Date: Wed, 10 Feb 2016 18:26:28 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408641 - head/lang/gcc6-aux Message-ID: <201602101826.u1AIQS4x042328@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Wed Feb 10 18:26:28 2016 New Revision: 408641 URL: https://svnweb.freebsd.org/changeset/ports/408641 Log: lang/gcc6-aux: Neutralize CPUTYPE settings It's been reported that gcc6-aux fails to build when CPUTYPE is set to haswell and it's not alone. Remove any -march cflags which should effectively negate the CPUTYPE setting. We can't change CPUTYPE directly because it is included before the port makefile is. Modified: head/lang/gcc6-aux/Makefile.common Modified: head/lang/gcc6-aux/Makefile.common ============================================================================== --- head/lang/gcc6-aux/Makefile.common Wed Feb 10 17:37:52 2016 (r408640) +++ head/lang/gcc6-aux/Makefile.common Wed Feb 10 18:26:28 2016 (r408641) @@ -12,3 +12,4 @@ GNU_CONFIGURE= yes USES= gmake libtool perl5 tar:bzip2 USE_PERL5= build ALL_TARGET= default +CFLAGS:= ${CFLAGS:N-march=*}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602101826.u1AIQS4x042328>