# HG changeset patch # User twisti # Date 1372121245 25200 # Node ID cc63bcb47cce51eefdd97f6d2ce86147761f845c # Parent fc8a1a5de78e8a6df3903d474bc34745f3327ba1 8017538: Clang support broke slowdebug build for i586 Reviewed-by: kvn diff -r fc8a1a5de78e -r cc63bcb47cce make/linux/makefiles/gcc.make --- a/make/linux/makefiles/gcc.make Fri Jun 21 00:59:12 2013 -0700 +++ b/make/linux/makefiles/gcc.make Mon Jun 24 17:47:25 2013 -0700 @@ -350,9 +350,9 @@ ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),) ifeq ($(USE_CLANG), true) # Clang doesn't understand -gstabs - OPT_CFLAGS += -g + DEBUG_CFLAGS += -g else - OPT_CFLAGS += -gstabs + DEBUG_CFLAGS += -gstabs endif endif @@ -365,9 +365,9 @@ ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),) ifeq ($(USE_CLANG), true) # Clang doesn't understand -gstabs - OPT_CFLAGS += -g + FASTDEBUG_CFLAGS += -g else - OPT_CFLAGS += -gstabs + FASTDEBUG_CFLAGS += -gstabs endif endif