changeset 717:f44cf2772aa1

profile support & CFLAGS improvements
author nickols_k
date Mon, 07 May 2001 07:52:50 +0000
parents 946170f9ed39
children 3156ab0adffe
files configure
diffstat 1 files changed, 12 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Mon May 07 01:59:58 2001 +0000
+++ b/configure	Mon May 07 07:52:50 2001 +0000
@@ -76,7 +76,8 @@
 
 params:
         --cc                    use this C compiler to build MPlayer [gcc]
-	--enable-debug[=1-3]	compile debugging information into mplayer
+	--enable-debug[=1-3]	compile debugging information into mplayer [disable]
+	--enable-profile	compile profiling information into mplayer [disable]
         --enable-mmx            build with mmx support [autodetect]
         --enable-mmx2           build with mmx2 support (PIII, Athlon) [autodetect]
         --enable-3dnow          build with 3dnow! support [autodetect]
@@ -507,6 +508,9 @@
 for ac_option
 do
  case "$ac_option" in
+  --enable-profile)
+  	_profile='-p'
+	;;
   --enable-debug)
   	_debug='-g'
 	;;
@@ -806,10 +810,13 @@
 fi
 
 # Checking for CFLAGS
-if [ "$CFLAGS" = "" ]; then
- CFLAGS="-O4 $_debug -march=$proc -mcpu=$proc -pipe -ffast-math"
+if [ "$_profile" != "" ] || [ "$_debug" != "" ]; then
+ CFLAGS="-O2 -march=$proc -mcpu=$proc $_debug $_profile"
+else
+if test -z "$CFLAGS"; then
+ CFLAGS="-O4 -march=$proc -mcpu=$proc -pipe -ffast-math -fomit-frame-pointer"
 fi
-
+fi
 echo
 echo "Creating $MCONF"
 cat > $MCONF << EOF
@@ -819,7 +826,7 @@
 AR=ar
 CC=$_cc
 X11DIR=$_x11libdir
-# OPTFLAGS=-O4 $_debug -march=$proc -mcpu=$proc -pipe -fomit-frame-pointer -ffast-math
+# OPTFLAGS=-O4 $_profile $_debug -march=$proc -mcpu=$proc -pipe -fomit-frame-pointer -ffast-math
 OPTFLAGS=$CFLAGS
 # LIBS=-L/usr/lib -L/usr/local/lib $_x11libdir $_gllib $_sdllib $_dgalib $_x11lib $_xvlib
 X_LIBS=$_x11libdir $_gllib $_sdllib $_dgalib $_x11lib $_xvlib $_vmlib $_svgalib $_libpng