Add LLDB to BROKEN_OPTIONS for arm prior to armv6

LLVM lacks support on FreeBSD for ARMv4/ARMv5 64-bit atomic operations.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
emaste 2015-04-24 22:04:59 +00:00
parent 2af9b531aa
commit 419f9d1bb9

View File

@ -235,6 +235,10 @@ __DEFAULT_NO_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC
.if ${__T} == "aarch64" .if ${__T} == "aarch64"
BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GDB BROKEN_OPTIONS+=BINUTILS BINUTILS_BOOTSTRAP GDB
.endif .endif
# LLVM lacks support for FreeBSD 64-bit atomic operations for ARMv4/ARMv5
.if ${__T} == "arm" || ${__T} == "armeb"
BROKEN_OPTIONS+=LLDB
.endif
.include <bsd.mkopt.mk> .include <bsd.mkopt.mk>