diff options
author | Eduardo Julian | 2019-05-21 19:51:14 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-05-21 19:51:14 -0400 |
commit | eb59547eae1753c9aed1ee887e44c825c1b32c05 (patch) | |
tree | aabce6250366d4f71ae64c50bde8b8bb717ac636 /commands | |
parent | 814d5e86f6475e18d671be5149c9a9747e93d455 (diff) |
WIP: Separate Scheme compiler.
Diffstat (limited to '')
-rw-r--r-- | commands | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -10,7 +10,8 @@ cd ~/lux/lux-python/ && lein clean && \ cd ~/lux/lux-lua/ && lein clean && \ cd ~/lux/lux-ruby/ && lein clean && \ cd ~/lux/lux-php/ && lein clean && \ -cd ~/lux/lux-cl/ && lein clean +cd ~/lux/lux-cl/ && lein clean && \ +cd ~/lux/lux-scheme/ && lein clean # Old Lux compiler # Re-build and re-install @@ -99,6 +100,16 @@ cd ~/lux/lux-cl/ && lein clean # Try cd ~/lux/lux-cl/ && java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux +# Scheme compiler + # Test + cd ~/lux/lux-scheme/ && lein_2_7_1 lux auto test + cd ~/lux/lux-scheme/ && lein clean && lein_2_7_1 lux auto test + # Build + cd ~/lux/lux-scheme/ && lein_2_7_1 lux auto build + cd ~/lux/lux-scheme/ && lein clean && lein_2_7_1 lux auto build + # Try + cd ~/lux/lux-scheme/ && java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux + # Run compiler test suite cd ~/lux/new-luxc/ && lein_2_7_1 lux auto test cd ~/lux/new-luxc/ && lein clean && lein_2_7_1 lux auto test |