Author: kono
Date: 2012-12-11 11:33:01 -0800 (Tue, 11 Dec 2012)
New Revision: 30995
Modified:
core3/gui-distribution/branches/3.0.0-release/assembly/src/main/bin/gen_vmoptions.bat
Log:
gen_vmoptions.bat adds -Xmx string before the memory size.
Modified:
core3/gui-distribution/branches/3.0.0-release/assembly/src/main/bin/gen_vmoptions.bat
===================================================================
---
core3/gui-distribution/branches/3.0.0-release/assembly/src/main/bin/gen_vmoptions.bat
2012-12-11 19:12:09 UTC (rev 30994)
+++
core3/gui-distribution/branches/3.0.0-release/assembly/src/main/bin/gen_vmoptions.bat
2012-12-11 19:33:01 UTC (rev 30995)
@@ -32,14 +32,14 @@
:64bit
REM echo "64 bit %mem% MB"
- echo %mem%M >Cytoscape.vmoptions
+ echo -Xmx%mem%M >Cytoscape.vmoptions
goto End
:32bit
REM echo "32 bit %mem% MB"
REM Some java versions can only support 1100MB
if %mem% GTR 1100 set mem=1100
- echo %mem%M >Cytoscape.vmoptions
+ echo -Xmx%mem%M >Cytoscape.vmoptions
goto End
:Nojava
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.