1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-09 23:20:26 +00:00
janet/examples/sysir/run_samples.sh

6 lines
217 B
Bash
Executable File

#!/usr/bin/env bash
valgrind build/janet examples/sysir/samples.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