svn commit: r263751 - stable/9

Dimitry Andric dim at FreeBSD.org
Tue Mar 25 22:43:35 UTC 2014


Author: dim
Date: Tue Mar 25 22:43:34 2014
New Revision: 263751
URL: http://svnweb.freebsd.org/changeset/base/263751

Log:
  MFC r243322 (by marcel):
  
  Unbreak amd64 cross-build where amd64 is the target. While clang
  may be installed as cc and we don't need to build gcc as a
  cross-tools, we still build gcc and thus need cc_tools built
  as a build tool. Not doing this results in building gengenrtl with
  the target compiler while we need to run it on the build machine.

Modified:
  stable/9/Makefile.inc1   (contents, props changed)

Modified: stable/9/Makefile.inc1
==============================================================================
--- stable/9/Makefile.inc1	Tue Mar 25 22:32:13 2014	(r263750)
+++ stable/9/Makefile.inc1	Tue Mar 25 22:43:34 2014	(r263751)
@@ -1204,7 +1204,7 @@ _aicasm= sys/modules/aic7xxx/aicasm
 _share=	share/syscons/scrnmaps
 .endif
 
-.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98")
+.if ${MK_GCC} != "no"
 _gcc_tools= gnu/usr.bin/cc/cc_tools
 .endif
 


More information about the svn-src-stable-9 mailing list