mirror of
https://github.com/janet-lang/janet
synced 2025-01-10 07:30:26 +00:00
6 lines
199 B
Bash
6 lines
199 B
Bash
|
#!/usr/bin/env bash
|
||
|
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
|
||
|
./temp.bin
|