1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-25 06:36:52 +00:00
janet/examples/sysir/run_drawing.sh

6 lines
217 B
Bash
Raw Normal View History

2024-11-24 18:33:48 +00:00
#!/usr/bin/env bash
valgrind build/janet examples/sysir/drawing.janet > temp.nasm
nasm -felf64 temp.nasm -l temp.lst -o temp.o
ld -o temp.bin -dynamic-linker /lib64/ld-linux-x86-64.so.2 -lc temp.o
valgrind ./temp.bin