From 3c4f2e710276d86abf25c678278c1ae6911db9e3 Mon Sep 17 00:00:00 2001 From: twisti Date: Mon, 24 Jun 2013 17:47:25 -0700 Subject: [PATCH] 8017538: Clang support broke slowdebug build for i586 Reviewed-by: kvn --- make/linux/makefiles/gcc.make | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/make/linux/makefiles/gcc.make b/make/linux/makefiles/gcc.make index 0382b7a3b..38cf2c034 100644 --- a/make/linux/makefiles/gcc.make +++ b/make/linux/makefiles/gcc.make @@ -350,9 +350,9 @@ else 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 @@ else 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 -- GitLab