We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23f1937 commit a922b8fCopy full SHA for a922b8f
Makefile
@@ -141,7 +141,13 @@ js: init
141
@@cat ${JSFILES} >> ${OUTPUT}/${NAME}.js
142
# ..... and then minify it
143
@@echo ${VER_MIN} > ${OUTPUT}/${NAME}.min.js
144
- @@java -jar build/google-compiler-20111003.jar --js ${OUTPUT}/${NAME}.js --warning_level QUIET >> ${OUTPUT}/${NAME}.min.js
+ @@java -XX:ReservedCodeCacheSize=64m \
145
+ -jar build/google-compiler-20111003.jar \
146
+ --js ${OUTPUT}/${NAME}.js \
147
+ --warning_level QUIET \
148
+ --js_output_file ${OUTPUT}/${NAME}.tmp.js
149
+ @@cat ${OUTPUT}/${NAME}.tmp.js >> ${OUTPUT}/${NAME}.min.js
150
+ @@rm ${OUTPUT}/${NAME}.tmp.js
151
# -------------------------------------------------
152
153
0 commit comments