Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Oct 2020 13:41:31 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r552977 - head/lang/gcc48
Message-ID:  <202010221341.09MDfVFE097814@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Thu Oct 22 13:41:31 2020
New Revision: 552977
URL: https://svnweb.freebsd.org/changeset/ports/552977

Log:
  Remove -march=ivybridge from CFLAGS and CXXFLAGS if present since this
  version of GCC does not support the Intel Ivy Bridge architecture.
  
  PR:		244654

Modified:
  head/lang/gcc48/Makefile

Modified: head/lang/gcc48/Makefile
==============================================================================
--- head/lang/gcc48/Makefile	Thu Oct 22 13:36:09 2020	(r552976)
+++ head/lang/gcc48/Makefile	Thu Oct 22 13:41:31 2020	(r552977)
@@ -35,8 +35,8 @@ USES=		compiler cpe gmake iconv libtool makeinfo perl5
 USE_BINUTILS=	yes
 USE_PERL5=	build
 SSP_UNSAFE=	yes
-CFLAGS:=	${CFLAGS:N-march=westmere:N-mretpoline}
-CXXFLAGS:=	${CXXFLAGS:N-march=westmere:N-mretpoline}
+CFLAGS:=	${CFLAGS:N-march=ivybridge:N-march=westmere:N-mretpoline}
+CXXFLAGS:=	${CXXFLAGS:N-march=ivybridge:N-march=westmere:N-mretpoline}
 
 OPTIONS_DEFINE=		BOOTSTRAP
 OPTIONS_DEFAULT=	BOOTSTRAP



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