hedgewars: need -fcommon when building using pas2c

This commit is contained in:
q66 2021-01-01 19:58:42 +01:00
parent 29fa0ea525
commit 502357f146

View file

@ -43,10 +43,13 @@ if [ -n "$_use_c_engine" ]; then
fi fi
pre_configure() { pre_configure() {
# remove option not supported by clang
if [ -n "$_use_c_engine" ]; then if [ -n "$_use_c_engine" ]; then
# remove option not supported by clang
CFLAGS=${CFLAGS/-fstack-clash-protection/} CFLAGS=${CFLAGS/-fstack-clash-protection/}
CXXFLAGS=${CXXFLAGS/-fstack-clash-protection/} CXXFLAGS=${CXXFLAGS/-fstack-clash-protection/}
# prevent multiple definitions
CFLAGS+=" -fcommon"
CXXFLAGS+=" -fcommon"
fi fi
} }