From f43691583f2e0b5f75c482835cea12c2ba9fc053 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Thu, 28 Apr 2005 00:57:35 +0000 Subject: [PATCH] My mistake svn path=/trunk/; revision=14838 --- reactos/tools/helper.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/tools/helper.mk b/reactos/tools/helper.mk index 74d1c2ea625..c879636604a 100644 --- a/reactos/tools/helper.mk +++ b/reactos/tools/helper.mk @@ -672,7 +672,11 @@ endif ifneq ($(DBG),1) MK_CFLAGS += -Os -Wno-strict-aliasing -ftracer -momit-leaf-frame-pointer MK_CFLAGS += -mpreferred-stack-boundary=2 - MK_CFLAGS += -funit-at-a-time -fweb + + CC_VERSION=$(word 1,$(shell gcc -dumpversion)) + ifeq ($(CC_VERSION),3.4.3) + MK_CFLAGS += -funit-at-a-time -fweb + endif # # Remove Symbols if no debugging is used at all