If unregisterised, link with -optl-Wl,--relax on IA64
authorIan Lynagh <igloo@earth.li>
Sun, 16 Mar 2008 21:41:04 +0000 (21:41 +0000)
committerIan Lynagh <igloo@earth.li>
Sun, 16 Mar 2008 21:41:04 +0000 (21:41 +0000)
This fixes part of trac #856

compiler/Makefile

index 7cd21c6..adddc06 100644 (file)
@@ -771,6 +771,13 @@ endif
 
 SRC_LD_OPTS += -no-link-chk
 
 
 SRC_LD_OPTS += -no-link-chk
 
+ifeq "$(GhcUnregisterised)" "NO"
+ifeq "$(HOSTPLATFORM)" "ia64-unknown-linux"
+# needed for generating proper relocation in large binaries: trac #856
+SRC_LD_OPTS += -optl-Wl,--relax
+endif
+endif
+
 # -----------------------------------------------------------------------------
 # create ghc-inplace, a convenient way to run ghc from the build tree...
 # See comments in $(FPTOOLS_TOP)/utils/ghc-pkg/Makefile for why we use
 # -----------------------------------------------------------------------------
 # create ghc-inplace, a convenient way to run ghc from the build tree...
 # See comments in $(FPTOOLS_TOP)/utils/ghc-pkg/Makefile for why we use