aboutsummaryrefslogtreecommitdiff
path: root/lux-python/commands.md
diff options
context:
space:
mode:
Diffstat (limited to 'lux-python/commands.md')
-rw-r--r--lux-python/commands.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/lux-python/commands.md b/lux-python/commands.md
new file mode 100644
index 000000000..e01901d6c
--- /dev/null
+++ b/lux-python/commands.md
@@ -0,0 +1,35 @@
+# Python compiler
+
+## Test
+
+```
+cd ~/lux/lux-python/ && lein lux auto test
+cd ~/lux/lux-python/ && lein clean && lein lux auto test
+```
+
+## Build
+
+```
+## Develop
+cd ~/lux/lux-python/ \
+&& lein clean \
+&& lein lux auto build
+
+## Build JVM-based compiler
+cd ~/lux/lux-python/ \
+&& lein clean \
+&& lein lux build \
+&& mv target/program.jar jvm_based_compiler.jar
+```
+
+## Try
+
+```
+## Compile Lux's Standard Library's tests using a JVM-based compiler.
+cd ~/lux/stdlib/ \
+&& lein clean \
+&& time java -jar ~/lux/lux-python/jvm_based_compiler.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux
+
+python3 ~/lux/stdlib/target/program.py
+```
+