hedgewars: need -fcommon when building using pas2c
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user