svn commit: r293067 - head/share/mk

Warner Losh imp at FreeBSD.org
Sun Jan 3 04:32:05 UTC 2016


Author: imp
Date: Sun Jan  3 04:32:04 2016
New Revision: 293067
URL: https://svnweb.freebsd.org/changeset/base/293067

Log:
  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.

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Sun Jan  3 04:32:02 2016	(r293066)
+++ head/share/mk/src.opts.mk	Sun Jan  3 04:32:04 2016	(r293067)
@@ -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>
 


More information about the svn-src-head mailing list