You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/03/20 15:07:15 UTC

[Bug 1044] New - To small heap for xalan build with jdk 1.1.8

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1044

*** shadow/1044	Tue Mar 20 06:07:15 2001
--- shadow/1044.tmp.10983	Tue Mar 20 06:07:15 2001
***************
*** 0 ****
--- 1,25 ----
+ +============================================================================+
+ | To small heap for xalan build with jdk 1.1.8                               |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 1044                        Product: XalanJ2                 |
+ |       Status: NEW                         Version: 2.0.0                   |
+ |   Resolution:                            Platform: PC                      |
+ |     Severity: Normal                   OS/Version: Linux                   |
+ |     Priority: Medium                    Component: Xalan                   |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: xalan-dev@xml.apache.org                                     |
+ |  Reported By: gisle@icesoft.no                                             |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ When compiling xalan with jdk 1.1.8 javac, The build fails because of
+ insufficient memory. The default maximal heap size is too small. If the 
+ heap size is increased to 20 MB, there are no problem. If the linein build.sh
+ starting ant is replaced by:
+ 
+ "$JAVA_HOME"/bin/java -Dant.home=. -mx20m -classpath "$TEMP_CP" \
+  org.apache.tools.ant.Main $@
+ 
+ Then it works fine. (The difference is of cause the extra option -mx20m)