force -finline-functions to get inlining really operating with gcc < 3.3.6

on x86 or you may get a _ZN9bit_fieldILi0ELi0EE7extractEj undefined symbol
This commit is contained in:
gbeauche 2005-07-25 19:46:24 +00:00
parent 74e4b16079
commit 81ba8f90d0

View File

@ -1315,7 +1315,7 @@ if [[ "x$EMULATED_PPC" = "xyes" ]]; then
else
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -malign-functions=0"
fi
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -finline-limit=10000 -fno-exceptions -g0"
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -finline-functions -finline-limit=10000 -fno-exceptions -g0"
if [[ "x$HAVE_GCC30" = "xyes" ]]; then
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -fno-reorder-blocks -fno-optimize-sibling-calls"
fi