From ce6470e0911f5761b4181ba540875b10342a65a0 Mon Sep 17 00:00:00 2001 From: 27Onion Nebell Date: Mon, 26 Feb 2024 23:23:49 +0800 Subject: [PATCH] Fixed build script that called C++ compiler instead of C compiler --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 2c961d43..cb7aa4b5 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ set -xe -CC="${CXX:-cc}" +CC="${CC:-cc}" PKGS="sdl2 glew freetype2" CFLAGS="-Wall -Wextra -std=c11 -pedantic -ggdb" LIBS=-lm