svn commit: r278231 - head/lib/csu/powerpc64

Justin Hibbits jhibbits at FreeBSD.org
Thu Feb 5 03:56:50 UTC 2015


Author: jhibbits
Date: Thu Feb  5 03:56:49 2015
New Revision: 278231
URL: https://svnweb.freebsd.org/changeset/base/278231

Log:
  powerpc64 csu needs to be built by gcc, so enforce that.
  
  With this change, world is one step closer to being clang-able.
  
  MFC after:	2 weeks

Modified:
  head/lib/csu/powerpc64/Makefile

Modified: head/lib/csu/powerpc64/Makefile
==============================================================================
--- head/lib/csu/powerpc64/Makefile	Thu Feb  5 01:43:21 2015	(r278230)
+++ head/lib/csu/powerpc64/Makefile	Thu Feb  5 03:56:49 2015	(r278231)
@@ -9,6 +9,9 @@ CFLAGS+=	-I${.CURDIR}/../common \
 		-I${.CURDIR}/../../libc/include \
 		-mlongcall
 
+CC:=		gcc
+COMPILER_TYPE:=	gcc
+
 all: ${OBJS}
 
 CLEANFILES=	${OBJS}


More information about the svn-src-head mailing list