From 72ba34c39245dc1b54c4725cdea9659e57e98424 Mon Sep 17 00:00:00 2001 From: Murilo Curti Date: Thu, 27 Jul 2023 21:39:09 -0300 Subject: [PATCH] fix: Use correct compiler for Win64 GCC in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 360cd2f..ced0d89 100644 --- a/Makefile +++ b/Makefile @@ -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