summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-02-13 03:41:10 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-02-13 03:41:10 +0000
commit39bcf5b8d0cdd67a199da15dbdf97970099b7214 (patch)
tree5a815209c6ca0c2a2dce3663f151ac4d662fce05 /Makefile.rules
parent093f32785bc2d5707afdf5a268b650b18672e08e (diff)
downloadllvm-39bcf5b8d0cdd67a199da15dbdf97970099b7214.tar.gz
llvm-39bcf5b8d0cdd67a199da15dbdf97970099b7214.tar.bz2
llvm-39bcf5b8d0cdd67a199da15dbdf97970099b7214.tar.xz
non-ieee arith crashes passes on alpha
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 5e3158266f..724554272a 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -228,6 +228,12 @@ LD.Flags += $(LDFLAGS)
AR.Flags := cru
LibTool.Flags := --tag=CXX
+#Make Floating point ieee complient on alpha
+ifeq ($(ARCH),Alpha)
+ CXX.Flags += -mieee
+ CPP.Flags += -mieee
+endif
+
#--------------------------------------------------------------------
# Directory locations
#--------------------------------------------------------------------