Remove -rdynamic compilation flag for OSX

This flag is used for the backtrace() function. It provides more information
for the backtrace on Linux, but is useless on OSX.
Signed-off-by: lledey <lledey@gmail.com>
This commit is contained in:
lledey 2012-12-12 01:14:49 +01:00 committed by ridiculousfish
parent 56dd25667d
commit 82223d3bad

View file

@ -275,10 +275,12 @@ if test "$GCC" = yes; then
CXXFLAGS="$CXXFLAGS -Wall" CXXFLAGS="$CXXFLAGS -Wall"
# #
# This is needed in order to get the really cool backtraces # This is needed in order to get the really cool backtraces on Linux
# #
LDFLAGS_FISH="$LDFLAGS_FISH -rdynamic" if test `uname` != "Darwin"; then
LDFLAGS_FISH="$LDFLAGS_FISH -rdynamic"
fi
fi fi