aboutsummaryrefslogtreecommitdiff
path: root/Makefile.main
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.main')
-rw-r--r--Makefile.main7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.main b/Makefile.main
index 487aa73..5776ac2 100644
--- a/Makefile.main
+++ b/Makefile.main
@@ -176,10 +176,9 @@ CFLAGS += -msoft-float
CFLAGS += $(call try-cflag,$(CC),-mno-string)
# do not use load/store multiple word instrcutions
CFLAGS += $(call try-cflag,$(CC),-mno-multiple)
-# do not use any automatic vector foo
-# While it would be safe during boot, we don't save/restore across OPAL calls
-CFLAGS += $(call try-cflag,$(CC),-mno-vsx) \
- $(call try-cflag,$(CC),-mno-altivec)
+# Do not use any automatic vector foo. While it would be safe during boot, we
+# don't save/restore across OPAL calls
+CFLAGS += -mno-vsx -mno-altivec
# Do not use load/store update. You REALLY do not want to use this!
# The async safety of the ABI stack depends on the atomicity