summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2011-05-29 19:39:04 +0000
committerJohn McCall <rjmccall@apple.com>2011-05-29 19:39:04 +0000
commit832a9d1a76d30ffd295453e93e8eb52948e5813e (patch)
treeede21dff6b89ba65677d1ced1949d4b78284d713 /autoconf
parentbcb85087a7f281dcc85b04f82be3a79ff9387fc5 (diff)
downloadllvm-832a9d1a76d30ffd295453e93e8eb52948e5813e.tar.gz
llvm-832a9d1a76d30ffd295453e93e8eb52948e5813e.tar.bz2
llvm-832a9d1a76d30ffd295453e93e8eb52948e5813e.tar.xz
On Darwin ARM, set the UNWIND_RESUME libcall to _Unwind_SjLj_Resume.
This is important for the correct lowering of unwind instructions (which doesn't matter at all) and llvm.eh.resume calls (which does). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index f0e7c42113..e8f24c1e05 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -605,7 +605,7 @@ if test "$enableval" = host-only ; then
enableval=host
fi
case "$enableval" in
- all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU XCore MSP430 SystemZ Blackfin CBackend CppBackend MBlaze PTX" ;;
+ all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Glulx Mips CellSPU XCore MSP430 SystemZ Blackfin CBackend CppBackend MBlaze PTX" ;;
*)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
case "$a_target" in
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
@@ -614,6 +614,7 @@ case "$enableval" in
powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
alpha) TARGETS_TO_BUILD="Alpha $TARGETS_TO_BUILD" ;;
arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
+ glulx) TARGETS_TO_BUILD="Glulx $TARGETS_TO_BUILD" ;;
mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
spu) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;;
xcore) TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;