Explorar o código

fix testing "gcc -mpreferred-stack-boundary=2" on x86_64

Denis Vlasenko %!s(int64=15) %!d(string=hai) anos
pai
achega
64577cf4a6
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      Rules.mak

+ 2 - 1
Rules.mak

@@ -184,7 +184,8 @@ ifeq ($(CONFIG_386)$(CONFIG_486)$(CONFIG_586)$(CONFIG_586MMX),y)
 	# NB: this may make SSE insns segfault!
 	# -O1 -march=pentium3, -Os -msse etc are known to be affected.
 	# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13685
-	OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
+	# -m32 is needed if host is 64-bit
+	OPTIMIZATION+=$(call check_gcc,-m32 -mpreferred-stack-boundary=2,)
 else
 	OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=4,)
 endif