From af046f8e29bf34b5778c5839d956298cb9584fd7 Mon Sep 17 00:00:00 2001 From: matthewc Date: Sun, 9 Jun 2002 14:01:27 +0000 Subject: [PATCH] [project @ 2002-06-09 14:01:27 by matthewc] Build cbits (not necessarily RTS) with -G0 on IA64, so GHCI doesn't have to deal with sdata sections --- mk/config.mk.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mk/config.mk.in b/mk/config.mk.in index 9fdc2a2..ad682b8 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -662,6 +662,10 @@ endif # default C compiler flags SRC_CC_OPTS = @SRC_CC_OPTS@ +ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux" +SRC_CC_OPTS += -G0 +endif + #----------------------------------------------------------------------------- # GMP Library (version 2.0.x or above) # -- 1.7.10.4