aboutsummaryrefslogtreecommitdiff
path: root/lux-cl
diff options
context:
space:
mode:
authorEduardo Julian2021-05-25 20:08:37 -0400
committerEduardo Julian2021-05-25 20:08:37 -0400
commit2466d4983c2d5ca46822f45cca863d07ce2b1ee0 (patch)
tree1036cd0a1785c18b48c2662f644309fb2724dccd /lux-cl
parent2df8e4bc8c53a831f3cd8605707ca08d66cecb02 (diff)
Fix for pattern-matching register binding.
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"]