You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2012/03/19 02:58:59 UTC

git commit: No ggdb3 for Darwin.

Updated Branches:
  refs/heads/master 633f34d18 -> 4993e5266


No ggdb3 for Darwin.

Clang doesn't support this and I'm tired of looking at the
warning message.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/4993e526
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/4993e526
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/4993e526

Branch: refs/heads/master
Commit: 4993e52661c19b28af411236702f6de2e1199cc8
Parents: 633f34d
Author: James Peach <jp...@apache.org>
Authored: Sun Mar 18 18:57:58 2012 -0700
Committer: James Peach <jp...@apache.org>
Committed: Sun Mar 18 18:57:58 2012 -0700

----------------------------------------------------------------------
 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/4993e526/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 27d5380..9725c12 100644
--- a/configure.ac
+++ b/configure.ac
@@ -611,13 +611,13 @@ case $host_os in
     case $base_cc in
     clang)
       common_opt="-pipe -Wall -Werror -Wno-deprecated-declarations"
-      debug_opt="-ggdb3 $common_opt"
+      debug_opt="$common_opt"
       release_opt="-g $common_opt $optimizing_flags -fno-strict-aliasing"
       cxx_opt="-Wno-invalid-offsetof"
       ;;
     *) # gcc
       common_opt="-pipe -Wall -Werror -Wno-deprecated-declarations"
-      debug_opt="-ggdb3 $common_opt"
+      debug_opt="$common_opt"
       release_opt="-g $common_opt $optimizing_flags -feliminate-unused-debug-symbols -fno-strict-aliasing"
       cxx_opt="-Wno-invalid-offsetof"
       ;;