potential fix for ia64 arch

This commit is contained in:
Sylvestre Ledru 2013-06-03 15:52:05 +00:00
parent dc33073604
commit 11d6710c53
2 changed files with 14 additions and 0 deletions

13
debian/patches/ia64-fix.diff vendored Normal file
View File

@ -0,0 +1,13 @@
Index: llvm/lib/ExecutionEngine/JIT/JIT.cpp
===================================================================
--- llvm.orig/lib/ExecutionEngine/JIT/JIT.cpp 2013-06-03 17:32:40.000000000 +0200
+++ llvm/lib/ExecutionEngine/JIT/JIT.cpp 2013-06-03 17:32:59.000000000 +0200
@@ -68,7 +68,7 @@
}
// Determine whether we can register EH tables.
-#if (defined(__GNUC__) && !defined(__ARM_EABI__) && \
+#if (defined(__GNUC__) && !defined(__ARM_EABI__) && !defined(__ia64__) && \
!defined(__USING_SJLJ_EXCEPTIONS__))
#define HAVE_EHTABLE_SUPPORT 1
#else

View File

@ -18,3 +18,4 @@ declare_clear_cache.diff
31-powerpcspe.diff
33-armhf-defaults.diff
34-powerpc-no-altivec.diff
ia64-fix.diff