summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/make/Android.rules
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-06-29 14:32:23 +0000
committerPavel Labath <labath@google.com>2017-06-29 14:32:23 +0000
commit217a763bb274771d7fe6c4444a7e3f030169e6f2 (patch)
treef90c7c8731b88804a1d7436d6daad8e7ce38cbde /lldb/packages/Python/lldbsuite/test/make/Android.rules
parent38d0632e6a2da897fc83bb35b73ade720359ff7f (diff)
downloadbcm5719-llvm-217a763bb274771d7fe6c4444a7e3f030169e6f2.tar.gz
bcm5719-llvm-217a763bb274771d7fe6c4444a7e3f030169e6f2.zip
Android.rules: build x86 tests with -mstackrealign
All android builds systems have switched to -mstackrealign for building x86 binaries, so follow their cue with our mini build system. This presently breaks just one test (TestReturnValue), and this is due to a compiler bug, which has already been fixed in clang, but it hasn't made it yet into the official NDK compiler. While I'm touching that test, I also remove an android-specific XFAIL, which is not relevant anymore. llvm-svn: 306683
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/make/Android.rules')
-rw-r--r--lldb/packages/Python/lldbsuite/test/make/Android.rules4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/make/Android.rules b/lldb/packages/Python/lldbsuite/test/make/Android.rules
index 058401f425a..0a725494d35 100644
--- a/lldb/packages/Python/lldbsuite/test/make/Android.rules
+++ b/lldb/packages/Python/lldbsuite/test/make/Android.rules
@@ -90,3 +90,7 @@ else
ARCH_LDFLAGS += $(NDK_ROOT)/sources/cxx-stl/gnu-libstdc++/4.9/libs/$(STL_ARCH)/libgnustl_static.a
endif
+
+ifeq "$(ARCH)" "i386"
+ ARCH_CFLAGS += -mstackrealign
+endif
OpenPOWER on IntegriCloud