[MPlayer-cvslog] r37718 - trunk/configure

reimar subversion at mplayerhq.hu
Sat Feb 13 22:05:43 CET 2016


Author: reimar
Date: Sat Feb 13 22:05:42 2016
New Revision: 37718

Log:
configure: build with -fno-asynchronous-unwind-tables.

Patch by Lauri Kasanen [cand gmx.com]

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sat Feb 13 20:30:15 2016	(r37717)
+++ trunk/configure	Sat Feb 13 22:05:42 2016	(r37718)
@@ -2849,6 +2849,10 @@ if test "$cc_vendor" = "gnu" ; then
   cflag_check -Wstrict-prototypes && WARN_CFLAGS="-Wstrict-prototypes $WARN_CFLAGS"
 fi
 
+# This provides significant size savings on gcc.
+# I will cause worse backtraces when debug info is missing though,
+# but having non-stripable debug info is not really a desirable feature.
+cflag_check -fno-asynchronous-unwind-tables && CFLAGS="$CFLAGS -fno-asynchronous-unwind-tables"
 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
 cflag_check -MMD -MP && DEPFLAGS="-MMD -MP"
 


More information about the MPlayer-cvslog mailing list