diff options
Diffstat (limited to 'example-cross-compile-cpp/Makefile')
-rw-r--r-- | example-cross-compile-cpp/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/example-cross-compile-cpp/Makefile b/example-cross-compile-cpp/Makefile new file mode 100644 index 0000000..6b904a3 --- /dev/null +++ b/example-cross-compile-cpp/Makefile @@ -0,0 +1,17 @@ +riscv64: lin-riscv64 +aarch64: lin-aarch64 +mips64el: lin-mips64el + +lin-%: + zig build-exe lin.cc -target $*-linux-musl -lc --name $*.elf + file $*.elf + qemu-$* $*.elf + +win: + zig build-exe win.cc -target x86_64-windows -lc + file win.exe + wine win.exe + +clean: + git clean -fdx . + |