Add new LIBSOFT option. This is similar to the LIB32 option, except

for libraries that follow the soft float ABI. It's only supported on
armv6 as a transition to the new hard float ABI, so mark as broken
everywhere else.
This commit is contained in:
imp 2016-01-03 04:32:04 +00:00
parent 867e4a7989
commit 462c7f2473

View File

@ -180,6 +180,7 @@ __DEFAULT_NO_OPTIONS = \
DTRACE_TESTS \
EISA \
HESIOD \
LIBSOFT \
NAND \
OFED \
OPENLDAP \
@ -248,6 +249,10 @@ __DEFAULT_NO_OPTIONS+=LLDB
.if ${__T} == "arm" || ${__T} == "armeb"
BROKEN_OPTIONS+=LLDB
.endif
# Only doing soft float API stuff on armv6
.if ${__T} != "armv6"
BROKEN_OPTIONS+=LIBSOFT
.endif
.include <bsd.mkopt.mk>