aboutsummaryrefslogtreecommitdiff
path: root/compilers.md
diff options
context:
space:
mode:
Diffstat (limited to 'compilers.md')
-rw-r--r--compilers.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/compilers.md b/compilers.md
index 5aabf4445..0bea1a06c 100644
--- a/compilers.md
+++ b/compilers.md
@@ -260,7 +260,10 @@ cd ~/lux/lux-ruby/ \
## Try
```
-cd ~/lux/lux-ruby/ && java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux
+## Compile Lux's Standard Library's tests using a JVM-based compiler.
+cd ~/lux/stdlib/ \
+&& lein clean \
+&& time java -jar ~/lux/lux-ruby/jvm_based_compiler.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux
```
---