aboutsummaryrefslogtreecommitdiff
path: root/lux-js/commands.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lux-js/commands.md6
1 files changed, 1 insertions, 5 deletions
diff --git a/lux-js/commands.md b/lux-js/commands.md
index 6730dad02..0b14b046b 100644
--- a/lux-js/commands.md
+++ b/lux-js/commands.md
@@ -8,10 +8,6 @@ cd ~/lux/lux-js/ \
# Build
```
-cd ~/lux/lux-js/ \
-&& lux clean \
-&& lux with js auto build
-
## Build JVM-based compiler
cd ~/lux/lux-js/ \
&& lux clean \
@@ -21,7 +17,7 @@ cd ~/lux/lux-js/ \
## Use JVM-based compiler to produce a JS/Node-based compiler.
cd ~/lux/lux-js/ \
&& lux clean \
-&& time java -jar jvm_based_compiler.jar build --source ~/lux/lux-js/source --target ~/lux/lux-js/target --module program --program _ \
+&& time java -Xss2m -jar jvm_based_compiler.jar build --source ~/lux/lux-js/source --target ~/lux/lux-js/target --module program --program _ \
&& mv target/program.js node_based_compiler.js
## Use JS/Node-based compiler to produce another JS/Node-based compiler.