From: Travis Cross Date: Sun, 10 Feb 2013 06:20:46 +0000 (+0000) Subject: Use -g3 rather than -ggdb3 for debian X-Git-Tag: v1.3.13~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f15ecbb8af28bcb3509c88cfdae3aec407bd4a7f;p=thirdparty%2Ffreeswitch.git Use -g3 rather than -ggdb3 for debian On a GNU/Linux system -g3 and -ggdb3 should produce the same result under gcc, but clang only recognizes -g3. --- diff --git a/debian/rules b/debian/rules index d5bdadf863..6e7c55788f 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ FS_CC?=gcc FS_CXX?=g++ -FS_CFLAGS?=-ggdb3 -O2 -fPIC +FS_CFLAGS?=-g3 -O2 -fPIC FS_CPPFLAGS?= FS_CXXFLAGS?=$(FS_CFLAGS) export PATH?=/usr/lib/ccache:/usr/sbin:/usr/bin:/sbin:/bin