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
1 changed files with 4 additions and 1 deletions

View File

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