diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2010-01-04 19:56:17 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2010-01-04 19:56:17 +0000 |
commit | ec93eac03e30dfad8886271b0ae45533cbc65c78 (patch) | |
tree | 7045e9e7d5b79de6d736a21f03b802f301125579 /devel/llvm | |
parent | surf is a simple web browser based on WebKit/GTK+. It is able to display (diff) |
Build fails on ia64 with:
/work/a/ports/devel/llvm/work/llvm-2.6/Release/lib/libLLVMJIT.a(JIT.o)(.text+0x1231): In function `llvm::JIT::JIT(llvm::ModuleProvider*, llvm::TargetMachine&, llvm::TargetJITInfo&, llvm::JITMemoryManager*, llvm::CodeGenOpt::Level, bool)':: undefined reference to `__register_frame'
Given the lack of a backend for IA64, I can't give fixing it a real high
priority.
Notes
Notes:
svn path=/head/; revision=247145
Diffstat (limited to 'devel/llvm')
-rw-r--r-- | devel/llvm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/llvm/Makefile b/devel/llvm/Makefile index 806d0d7cbe9e..d13321e93a90 100644 --- a/devel/llvm/Makefile +++ b/devel/llvm/Makefile @@ -56,8 +56,8 @@ MAN1= bugpoint.1 llc.1 lli.1 llvm-ar.1 \ .include <bsd.port.pre.mk> -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 +.if ${ARCH} == "sparc64" || ${ARCH} =="ia64" +BROKEN= Does not compile on ${ARCH} .endif .if ${ARCH} == "amd64" || ${ARCH} == "ia64" |