mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-08 00:59:48 +00:00
turn off optimization when profiling (ackcvs diff configure.in) because something segfaults if we don't
Original commit message from CVS: turn off optimization when profiling (ackcvs diff configure.in) because something segfaults if we don't
This commit is contained in:
parent
7b28fc9215
commit
8ffd62de62
1 changed files with 5 additions and 1 deletions
|
@ -730,7 +730,11 @@ dnl ##############################
|
|||
dnl # Set up the defaults cflags #
|
||||
dnl ##############################
|
||||
dnl CC="kgcc"
|
||||
CFLAGS="$CORE_CFLAGS $CFLAGS -O6 -Wall"
|
||||
if test "x$USE_PROFILING" = xyes; then
|
||||
CFLAGS="$CORE_CFLAGS $CFLAGS -Wall"
|
||||
else
|
||||
CFLAGS="$CORE_CFLAGS $CFLAGS -O6 -Wall"
|
||||
fi
|
||||
LIBS="$CORE_LIBS $LIBS"
|
||||
AC_SUBST(CORE_LIBS)
|
||||
AC_SUBST(CORE_CFLAGS)
|
||||
|
|
Loading…
Reference in a new issue