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.
This commit is contained in:
parent
a7a3bc5097
commit
30467b85d1
|
@ -15,7 +15,7 @@ FLAGS_x86="\
|
|||
|
||||
C_FLAGS=$FLAGS_x86
|
||||
|
||||
CC=g++
|
||||
CC=cc
|
||||
AS=as
|
||||
|
||||
echo Compiling GlideHQ library sources for Glide64...
|
||||
|
|
Loading…
Reference in New Issue