Skip to content

Commit 05cf32c

Browse files
committed
remove -XX:MaxPermSize=128M; it doesn't exist in Java 8
1 parent 02c3bac commit 05cf32c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ We typically alias `build/quick/bin/scalac -d sandbox` to `qsc` and `build/quick
178178
Note: on most machines this requires more heap than is allocate by default. You can adjust the parameters with ANT_OPTS. Example command line:
179179

180180
```
181-
ANT_OPTS = "-Xms512M -Xmx2048M -Xss1M -XX:MaxPermSize=128M" ant docs
181+
ANT_OPTS = "-Xms512M -Xmx2048M -Xss1M" ant docs
182182
```
183183

184184
- `ant dist` builds a distribution in 'dists/latest'.

test/partest

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@ fi
117117

118118
# last arg wins, so if JAVA_OPTS already contains -Xmx or -Xms the
119119
# supplied argument will be used.
120-
# At this writing it is reported test/partest --all requires 108m permgen.
121-
JAVA_OPTS="-Xmx1024M -Xms64M -XX:MaxPermSize=128M $JAVA_OPTS"
120+
JAVA_OPTS="-Xmx1024M -Xms64M $JAVA_OPTS"
122121

123122
# the ant task doesn't supply any options by default,
124123
# so don't do that here either -- note that you may want to pass -optimise

0 commit comments

Comments
 (0)