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>
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to