File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 16
16
'-Xss64M' , # Increase stack size (`-XX:ThreadStackSize=64M` not working)
17
17
18
18
# GARBAGE COLLECTOR (optimized for GraalSqueak image)
19
- '-XX:+UseG1GC' ,
20
19
'-XX:OldSize=256M' , # Initial tenured generation size
21
20
'-XX:NewSize=1G' , # Initial new generation size
22
21
'-XX:MetaspaceSize=32M' , # Initial size of Metaspaces
26
25
'-Xss64M' , # Increase stack size (`-XX:ThreadStackSize=64M` not working)
27
26
28
27
# GARBAGE COLLECTOR (optimized for Travis CI)
29
- '-XX:+UseG1GC' ,
30
28
'-Xms4G' , # Initial heap size
31
29
'-XX:MetaspaceSize=32M' , # Initial size of Metaspaces
32
30
]
Original file line number Diff line number Diff line change 28
28
# Parse arguments, prepare Java command, and execute. #
29
29
# ######################################################################
30
30
PROGRAM_ARGS=" --polyglot"
31
- JAVA_ARGS=" -Xss64M -XX:+UseG1GC -XX: OldSize=256M -XX:NewSize=1G -XX:MetaspaceSize=32M"
31
+ JAVA_ARGS=" -Xss64M -XX:OldSize=256M -XX:NewSize=1G -XX:MetaspaceSize=32M"
32
32
33
33
for opt in " $@ " ; do
34
34
case $opt in
You can’t perform that action at this time.
0 commit comments