aboutsummaryrefslogtreecommitdiff
path: root/lux-cl
diff options
context:
space:
mode:
Diffstat (limited to 'lux-cl')
-rw-r--r--lux-cl/commands.md5
-rw-r--r--lux-cl/project.clj2
2 files changed, 5 insertions, 2 deletions
diff --git a/lux-cl/commands.md b/lux-cl/commands.md
index baefd65b7..892e90c1f 100644
--- a/lux-cl/commands.md
+++ b/lux-cl/commands.md
@@ -19,5 +19,8 @@ cd ~/lux/lux-cl/ \
## Try
```
-cd ~/lux/lux-cl/ && 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-cl/target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux
```
diff --git a/lux-cl/project.clj b/lux-cl/project.clj
index 24ebf5589..f39ec0f9d 100644
--- a/lux-cl/project.clj
+++ b/lux-cl/project.clj
@@ -22,7 +22,7 @@
:plugins [[com.github.luxlang/lein-luxc ~version]]
:dependencies [[com.github.luxlang/luxc-jvm ~version]
[com.github.luxlang/stdlib ~version]
- [org.abcl/abcl "1.5.0"]]
+ [org.abcl/abcl "1.8.0"]]
:manifest {"lux" ~version}
:source-paths ["source"]