From 30467b85d1c7d8b43d9356c4952181d9093eb436 Mon Sep 17 00:00:00 2001 From: Date: Mon, 9 May 2016 01:39:29 -0400 Subject: [PATCH] Do not force C++ compilation of C code. Invoke compilation via `cc', not `g++'. This fixes both the remaining run-time linkage resolution conflicts on Linux as well as several C++ compilation warnings that did not apply to compiling with C rules. --- Source/Script/Unix/glidehq.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Script/Unix/glidehq.sh b/Source/Script/Unix/glidehq.sh index add8aca6a..4b1edf825 100755 --- a/Source/Script/Unix/glidehq.sh +++ b/Source/Script/Unix/glidehq.sh @@ -15,7 +15,7 @@ FLAGS_x86="\ C_FLAGS=$FLAGS_x86 -CC=g++ +CC=cc AS=as echo Compiling GlideHQ library sources for Glide64...