1
0
mirror of https://github.com/janet-lang/janet synced 2025-07-17 01:12:53 +00:00
janet/tools/x64.sh
2025-03-31 21:48:46 -05:00

22 lines
402 B
Bash
Executable File

#!/usr/bin/env bash
case "$2" in
c)
rm temp.bin temp.o temp.nasm
build/janet "$@" > temp.c
gcc -nostdlib temp.c -c temp.o
;;
x64)
rm temp.bin temp.o temp.nasm
build/janet "$@" > temp.nasm
nasm -felf64 temp.nasm -l temp.lst -o temp.o
;;
*)
echo "Unknown mode $2"
exit
;;
esac
ld -o temp.bin -dynamic-linker /lib64/ld-linux-x86-64.so.2 -lc temp.o
./temp.bin