commit 850f324c7b0b21a31c309df9dd30043b52b5a950 Author: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Thu May 29 22:57:21 2025 +0200 init diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..b436e3c --- /dev/null +++ b/test/Makefile @@ -0,0 +1,4 @@ +all: hello.o + +hello.o: hello.c + clang hello.c -target x86_64-pc-windows-gnu -c diff --git a/test/hello.c b/test/hello.c new file mode 100644 index 0000000..398ffda --- /dev/null +++ b/test/hello.c @@ -0,0 +1 @@ +void mainCRTStartup() {}