1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-10 07:30:26 +00:00
janet/examples/sysir/run_samples.bat
Calvin Rose e5765b26d4 Working examples on windows.
Add some support for windows x64 ABI.
2024-06-17 07:07:20 -07:00

5 lines
187 B
Batchfile

janet.exe examples/sysir/samples.janet > temp.nasm
nasm -fwin64 temp.nasm -l temp.lst -o temp.o
link /entry:Start /subsystem:windows kernel32.lib user32.lib temp.o /out:temp.exe
temp.exe