fix: Use correct compiler for Win64 GCC in Makefile

This commit is contained in:
Murilo Curti
2023-07-27 21:39:09 -03:00
committed by GitHub
parent 568a651c45
commit 72ba34c392
+1 -1
View File
@@ -34,7 +34,7 @@ runomp: run.c
.PHONY: win64
win64:
x86_64-w64-mingw32-gcc-win32 -Ofast -D_WIN32 -o run.exe -I. run.c win.c
x86_64-w64-mingw32-gcc -Ofast -D_WIN32 -o run.exe -I. run.c win.c
# compiles with gnu99 standard flags for amazon linux, coreos, etc. compatibility
.PHONY: rungnu