From c5e455d8ca00b001f8264da9bb2cdfa6ef35da3d Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Fri, 26 Jan 2007 13:34:50 +0000 Subject: [PATCH] Work around broken binutils on alpha git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33535 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.rules b/Makefile.rules index 93a01932e7b..2b9b7fa1fc8 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -277,6 +277,10 @@ ifeq ($(ENABLE_PIC),0) endif endif +ifeq ($(ARCH),Alpha) + LD.Flags += -Wl,--no-relax +endif + #-------------------------------------------------------------------- # Directory locations #--------------------------------------------------------------------