aboutsummaryrefslogtreecommitdiff
path: root/compilers.md
diff options
context:
space:
mode:
authorEduardo Julian2021-02-26 02:34:17 -0400
committerEduardo Julian2021-02-26 02:34:17 -0400
commit69edb6de2ecf62881bcde1b8013c98450a6a52bc (patch)
tree3442a0abf0b5f95fa33adc586e470d150d2deece /compilers.md
parent47b320b854a6f28621c5d5d118cac31db27e7c50 (diff)
Got JRuby to cooperate.
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
```
---