We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de6f2fc + b18d325 commit a03ce1eCopy full SHA for a03ce1e
Makefile
@@ -32,6 +32,10 @@ runfast: run.c
32
runomp: run.c
33
$(CC) -Ofast -fopenmp -march=native run.c -lm -o run
34
35
+.PHONY: win64
36
+win64:
37
+ x86_64-w64-mingw32-gcc-win32 -Ofast -D_WIN32 -o run.exe -I. run.c win.c
38
+
39
.PHONY: clean
40
clean:
41
rm -f run
build_msvc.bat
@@ -0,0 +1 @@
1
+cl.exe /Ox /openmp /I. run.c win.c
0 commit comments