svn commit: r312776 - projects/clang400-import/share/mk

Ed Maste emaste at FreeBSD.org
Wed Jan 25 20:33:33 UTC 2017


Author: emaste
Date: Wed Jan 25 20:33:31 2017
New Revision: 312776
URL: https://svnweb.freebsd.org/changeset/base/312776

Log:
  Build Clang on all architectures if host compiler is C++11
  
  Recent versions of Clang are becoming usable for non-x86 non-arm FreeBSD
  architectures. If the compiler is capable of building Clang, do so in
  order to facilitate further testing.
  
  Reviewed by:	dim, imp
  Relnotes:	Yes
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D8267

Modified:
  projects/clang400-import/share/mk/src.opts.mk

Modified: projects/clang400-import/share/mk/src.opts.mk
==============================================================================
--- projects/clang400-import/share/mk/src.opts.mk	Wed Jan 25 20:22:32 2017	(r312775)
+++ projects/clang400-import/share/mk/src.opts.mk	Wed Jan 25 20:33:31 2017	(r312776)
@@ -225,9 +225,10 @@ __TT=${MACHINE}
 # Clang is enabled, and will be installed as the default /usr/bin/cc.
 __DEFAULT_YES_OPTIONS+=CLANG CLANG_BOOTSTRAP CLANG_FULL CLANG_IS_CC
 __DEFAULT_NO_OPTIONS+=GCC GCC_BOOTSTRAP GNUCXX
-.elif ${COMPILER_FEATURES:Mc++11} && ${__T:Mpowerpc*}
-# On powerpc, if an external compiler that supports C++11 is used as ${CC},
-# then Clang is enabled, but GCC is installed as the default /usr/bin/cc.
+.elif ${COMPILER_FEATURES:Mc++11} && ${__T} != "riscv64" && ${__T} != "sparc64"
+# If an external compiler that supports C++11 is used as ${CC} and Clang
+# supports the target, then Clang is enabled but GCC is installed as the
+# default /usr/bin/cc.
 __DEFAULT_YES_OPTIONS+=CLANG CLANG_FULL GCC GCC_BOOTSTRAP GNUCXX
 __DEFAULT_NO_OPTIONS+=CLANG_BOOTSTRAP CLANG_IS_CC
 .else


More information about the svn-src-projects mailing list