mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
Remove all locally-defined optimization flags
Original commit message from CVS: Remove all locally-defined optimization flags
This commit is contained in:
parent
cb1962b920
commit
43f30739b9
15 changed files with 15 additions and 64 deletions
25
configure.ac
25
configure.ac
|
@ -49,13 +49,6 @@ if test "x$GST_WALL" = "xyes"; then
|
||||||
if test "x$GST_CVS" = "xyes"; then
|
if test "x$GST_CVS" = "xyes"; then
|
||||||
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
|
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl set gcc-style optimization flags if using the gnu compiler.
|
|
||||||
GST_FUNROLL_CFLAGS="$GST_FUNROLL_CFLAGS -funroll-all-loops"
|
|
||||||
GST_FINLINE_CFLAGS="$GST_FINLINE_CFLAGS -finline-functions"
|
|
||||||
GST_FFASTMATH_CFLAGS="$GST_FFASTMATH_CFLAGS -ffast-math"
|
|
||||||
GST_FSCHEDULE_CFLAGS="$GST_FSCHEDULE_CFLAGS -fschedule-insns2"
|
|
||||||
GST_FNOEXCEPTIONS_CFLAGS="$GST_FNOEXCEPTIONS_CFLAGS -fno-exceptions"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl determine c++ compiler
|
dnl determine c++ compiler
|
||||||
|
@ -1107,17 +1100,6 @@ if test "x$USE_DEBUG" = xyes; then
|
||||||
GST_CFLAGS="$GST_CFLAGS -g"
|
GST_CFLAGS="$GST_CFLAGS -g"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "x$USE_PROFILING" = xyes; then
|
|
||||||
dnl CFLAGS="$CFLAGS -pg -fprofile-arcs"
|
|
||||||
FOMIT_FRAME_POINTER=""
|
|
||||||
else
|
|
||||||
FOMIT_FRAME_POINTER="-fomit-frame-pointer"
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl
|
|
||||||
dnl AC_SUBST(FOMIT_FRAME_POINTER)
|
|
||||||
dnl
|
|
||||||
|
|
||||||
dnl #############################
|
dnl #############################
|
||||||
dnl # Set automake conditionals #
|
dnl # Set automake conditionals #
|
||||||
dnl #############################
|
dnl #############################
|
||||||
|
@ -1149,16 +1131,9 @@ AM_CONDITIONAL(HAVE_RAW1394, test "x$HAVE_RAW1394" = "xyes")
|
||||||
|
|
||||||
dnl prefer internal headers to already installed ones
|
dnl prefer internal headers to already installed ones
|
||||||
GST_CFLAGS="-I\$(top_srcdir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
||||||
GST_OPT_CFLAGS="$GST_FINLINE_CFLAGS $GST_FFASTMATH_CFLAGS"
|
|
||||||
|
|
||||||
AC_SUBST(GST_LIBS)
|
AC_SUBST(GST_LIBS)
|
||||||
AC_SUBST(GST_CFLAGS)
|
AC_SUBST(GST_CFLAGS)
|
||||||
AC_SUBST(GST_FUNROLL_CFLAGS)
|
|
||||||
AC_SUBST(GST_FINLINE_CFLAGS)
|
|
||||||
AC_SUBST(GST_FFASTMATH_CFLAGS)
|
|
||||||
AC_SUBST(GST_FSCHEDULE_CFLAGS)
|
|
||||||
AC_SUBST(GST_FNOEXCEPTIONS_CFLAGS)
|
|
||||||
AC_SUBST(GST_OPT_CFLAGS)
|
|
||||||
|
|
||||||
dnl ###########################
|
dnl ###########################
|
||||||
dnl # Configure external libs #
|
dnl # Configure external libs #
|
||||||
|
|
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstsdlvideosink.la
|
||||||
|
|
||||||
libgstsdlvideosink_la_SOURCES = sdlvideosink.c
|
libgstsdlvideosink_la_SOURCES = sdlvideosink.c
|
||||||
## FIXME I have my doubts about these opti flags
|
## FIXME I have my doubts about these opti flags
|
||||||
libgstsdlvideosink_la_CFLAGS = $(GST_CFLAGS) $(SDL_CFLAGS) $(GST_OPT_CFLAGS)
|
libgstsdlvideosink_la_CFLAGS = $(GST_CFLAGS) $(SDL_CFLAGS)
|
||||||
libgstsdlvideosink_la_LIBADD = $(SDL_LIBS)
|
libgstsdlvideosink_la_LIBADD = $(SDL_LIBS)
|
||||||
libgstsdlvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsdlvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -8,5 +8,5 @@ libgstaudioincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/audio
|
||||||
libgstaudioinclude_HEADERS = audio.h audioclock.h
|
libgstaudioinclude_HEADERS = audio.h audioclock.h
|
||||||
|
|
||||||
libgstaudio_la_LIBADD =
|
libgstaudio_la_LIBADD =
|
||||||
libgstaudio_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS)
|
libgstaudio_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -28,5 +28,5 @@ noinst_HEADERS = dct.h
|
||||||
|
|
||||||
|
|
||||||
libgstidct_la_LIBADD =
|
libgstidct_la_LIBADD =
|
||||||
libgstidct_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS)
|
libgstidct_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstidct_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstidct_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -2,19 +2,9 @@ librarydir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
||||||
|
|
||||||
library_LTLIBRARIES = libgstresample.la
|
library_LTLIBRARIES = libgstresample.la
|
||||||
|
|
||||||
if HAVE_CPU_I386
|
|
||||||
ARCHCFLAGS = -march=i486
|
|
||||||
else
|
|
||||||
if HAVE_CPU_PPC
|
|
||||||
ARCHCFLAGS = -Wa,-m7400
|
|
||||||
else
|
|
||||||
ARCHCFLAGS =
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
libgstresample_la_SOURCES = dtos.c dtof.c functable.c resample.c resample.h
|
libgstresample_la_SOURCES = dtos.c dtof.c functable.c resample.c resample.h
|
||||||
libgstresample_la_LIBADD =
|
libgstresample_la_LIBADD =
|
||||||
libgstresample_la_CFLAGS = $(GST_CFLAGS) $(GST_FFASTMATH_CFLAGS) $(ARCHCFLAGS)
|
libgstresample_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
libgstresampleincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/resample
|
libgstresampleincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/resample
|
||||||
|
@ -22,9 +12,3 @@ libgstresampleinclude_HEADERS = resample.h
|
||||||
|
|
||||||
noinst_HEADERS = private.h
|
noinst_HEADERS = private.h
|
||||||
|
|
||||||
#check_PROGRAMS = test
|
|
||||||
#test_SOURCES = test.c
|
|
||||||
#test_LDADD = libresample.la
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,5 +8,5 @@ libgstriffincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/riff
|
||||||
libgstriffinclude_HEADERS = riff.h
|
libgstriffinclude_HEADERS = riff.h
|
||||||
|
|
||||||
libgstriff_la_LIBADD =
|
libgstriff_la_LIBADD =
|
||||||
libgstriff_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS) $(GST_FUNROLL_CFLAGS)
|
libgstriff_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstriff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstriff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -8,5 +8,5 @@ libgstvideoincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/video
|
||||||
libgstvideoinclude_HEADERS = video.h
|
libgstvideoinclude_HEADERS = video.h
|
||||||
|
|
||||||
libgstvideo_la_LIBADD =
|
libgstvideo_la_LIBADD =
|
||||||
libgstvideo_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS)
|
libgstvideo_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstvideo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -7,6 +7,6 @@ libgstcdxaparse_la_SOURCES = gstcdxaparse.c
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gstcdxaparse.h
|
gstcdxaparse.h
|
||||||
|
|
||||||
libgstcdxaparse_la_CFLAGS = -O2 $(GST_FFASTMATH_CFLAGS) $(GST_CFLAGS)
|
libgstcdxaparse_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstcdxaparse_la_LIBADD =
|
libgstcdxaparse_la_LIBADD =
|
||||||
libgstcdxaparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcdxaparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
noinst_LTLIBRARIES = libmodplug.la
|
noinst_LTLIBRARIES = libmodplug.la
|
||||||
|
|
||||||
libmodplug_la_CXXFLAGS = $(GST_FNOEXCEPTIONS_CFLAGS) $(GST_CFLAGS) $(GST_FFASTMATH_CFLAGS) -D_REENTRANT
|
libmodplug_la_CXXFLAGS = $(GST_CFLAGS) -D_REENTRANT
|
||||||
libmodplug_la_LDFLAGS = -module -avoid-version
|
libmodplug_la_LDFLAGS = -module -avoid-version
|
||||||
libmodplug_la_SOURCES = tables.cpp \
|
libmodplug_la_SOURCES = tables.cpp \
|
||||||
sndmix.cpp \
|
sndmix.cpp \
|
||||||
|
|
|
@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstmpeg1systemencode.la
|
||||||
libgstmpeg1systemencode_la_SOURCES = gstmpeg1systemencode.c \
|
libgstmpeg1systemencode_la_SOURCES = gstmpeg1systemencode.c \
|
||||||
buffer.c \
|
buffer.c \
|
||||||
systems.c
|
systems.c
|
||||||
libgstmpeg1systemencode_la_CFLAGS = -O2 $(FOMIT_FRAME_POINTER) $(GST_OPT_CFLAGS) $(GST_FUNROLL_CFLAGS) $(GST_CFLAGS)
|
libgstmpeg1systemencode_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmpeg1systemencode_la_LIBADD =
|
libgstmpeg1systemencode_la_LIBADD =
|
||||||
libgstmpeg1systemencode_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpeg1systemencode_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
plugin_LTLIBRARIES = libgstmp1videoparse.la
|
plugin_LTLIBRARIES = libgstmp1videoparse.la
|
||||||
|
|
||||||
libgstmp1videoparse_la_SOURCES = gstmp1videoparse.c
|
libgstmp1videoparse_la_SOURCES = gstmp1videoparse.c
|
||||||
libgstmp1videoparse_la_CFLAGS = $(GST_CFLAGS) -O3 $(FOMIT_FRAME_POINTER) $(GST_FFASTMATH_CFLAGS)
|
libgstmp1videoparse_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmp1videoparse_la_LIBADD =
|
libgstmp1videoparse_la_LIBADD =
|
||||||
libgstmp1videoparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmp1videoparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -3,13 +3,7 @@ plugin_LTLIBRARIES = libgstmpeg2subt.la
|
||||||
|
|
||||||
libgstmpeg2subt_la_SOURCES = gstmpeg2subt.c
|
libgstmpeg2subt_la_SOURCES = gstmpeg2subt.c
|
||||||
|
|
||||||
if HAVE_CPU_I386
|
libgstmpeg2subt_la_CFLAGS = $(GST_CFLAGS)
|
||||||
ARCHCFLAGS = -mcpu=i486
|
|
||||||
else
|
|
||||||
ARCHCFLAGS =
|
|
||||||
endif
|
|
||||||
|
|
||||||
libgstmpeg2subt_la_CFLAGS = -O3 $(ARCHCFLAGS) $(GST_FSCHEDULE_CFLAGS) $(FOMIT_FRAME_POINTER) $(GST_OPT_CFLAGS) $(GST_CFLAGS)
|
|
||||||
libgstmpeg2subt_la_LIBADD =
|
libgstmpeg2subt_la_LIBADD =
|
||||||
libgstmpeg2subt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpeg2subt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,15 @@
|
||||||
plugin_LTLIBRARIES = libgstmpegaudioparse.la libgstmp3types.la
|
plugin_LTLIBRARIES = libgstmpegaudioparse.la libgstmp3types.la
|
||||||
|
|
||||||
libgstmpegaudioparse_la_SOURCES = gstmpegaudioparse.c
|
libgstmpegaudioparse_la_SOURCES = gstmpegaudioparse.c
|
||||||
# FIXME is this useful?
|
libgstmpegaudioparse_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmpegaudioparse_la_CFLAGS = -O3 $(FOMIT_FRAME_POINTER) $(GST_OPT_CFLAGS) $(GST_CFLAGS)
|
|
||||||
libgstmpegaudioparse_la_LIBADD =
|
libgstmpegaudioparse_la_LIBADD =
|
||||||
libgstmpegaudioparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmpegaudioparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
libgstmp3types_la_SOURCES = gstmp3types.c
|
libgstmp3types_la_SOURCES = gstmp3types.c
|
||||||
libgstmp3types_la_CFLAGS = -O3 $(FOMIT_FRAME_POINTER) $(GST_OPT_CFLAGS) $(GST_CFLAGS)
|
libgstmp3types_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmp3types_la_LIBADD =
|
libgstmp3types_la_LIBADD =
|
||||||
libgstmp3types_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmp3types_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmpegaudioparse.h
|
noinst_HEADERS = gstmpegaudioparse.h
|
||||||
EXTRA_DIST = README
|
EXTRA_DIST = README
|
||||||
|
|
||||||
# FIXME is this needed?
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
plugin_LTLIBRARIES = libgstsmooth.la
|
plugin_LTLIBRARIES = libgstsmooth.la
|
||||||
|
|
||||||
libgstsmooth_la_SOURCES = gstsmooth.c
|
libgstsmooth_la_SOURCES = gstsmooth.c
|
||||||
libgstsmooth_la_CFLAGS = -O3 $(FOMIT_FRAME_POINTER) $(GST_OPT_CFLAGS) $(GST_FUNROLL_CFLAGS) $(GST_CFLAGS)
|
libgstsmooth_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstsmooth_la_LIBADD =
|
libgstsmooth_la_LIBADD =
|
||||||
libgstsmooth_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsmooth_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstsmpte_la_SOURCES = gstsmpte.c gstmask.c barboxwipes.c paint.c
|
||||||
|
|
||||||
noinst_HEADERS = gstsmpte.h gstmask.h paint.h
|
noinst_HEADERS = gstsmpte.h gstmask.h paint.h
|
||||||
|
|
||||||
libgstsmpte_la_CFLAGS = -O2 $(GST_FFASTMATH_CFLAGS) $(GST_CFLAGS)
|
libgstsmpte_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstsmpte_la_LIBADD =
|
libgstsmpte_la_LIBADD =
|
||||||
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue