Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Feb 2015 03:56:50 +0000 (UTC)
From:      Justin Hibbits <jhibbits@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r278231 - head/lib/csu/powerpc64
Message-ID:  <201502050356.t153uoPC055024@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502050356.t153uoPC055024>