diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2007-01-26 13:34:50 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2007-01-26 13:34:50 +0000 |
commit | 0ad67b0e4314291b7f59336b2525475b5a5ccdd9 (patch) | |
tree | 0dcd71e84a865ef6dd64bde35d708cd818746f29 | |
parent | 23f1272d372d4d46c68246b5767ad8350d512da4 (diff) | |
download | bcm5719-llvm-0ad67b0e4314291b7f59336b2525475b5a5ccdd9.tar.gz bcm5719-llvm-0ad67b0e4314291b7f59336b2525475b5a5ccdd9.zip |
Work around broken binutils on alpha
llvm-svn: 33535
-rw-r--r-- | llvm/Makefile.rules | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 93a01932e7b..2b9b7fa1fc8 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -277,6 +277,10 @@ ifeq ($(ENABLE_PIC),0) endif endif +ifeq ($(ARCH),Alpha) + LD.Flags += -Wl,--no-relax +endif + #-------------------------------------------------------------------- # Directory locations #-------------------------------------------------------------------- |