Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Nov 2020 22:19:34 +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: r554330 - head/lang/gcc48
Message-ID:  <202011062219.0A6MJYuo007051@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Fri Nov  6 22:19:34 2020
New Revision: 554330
URL: https://svnweb.freebsd.org/changeset/ports/554330

Log:
  Also remove -march=haswell from CFLAGS and CXXFLAGS since GCC 4.8
  does not specifically support Intel Haswell.
  
  With that we should have covered all attempts people reported of
  setting CPUTYPE that GCC 4.8 does not support.
  
  PR:		218819

Modified:
  head/lang/gcc48/Makefile

Modified: head/lang/gcc48/Makefile
==============================================================================
--- head/lang/gcc48/Makefile	Fri Nov  6 22:11:13 2020	(r554329)
+++ head/lang/gcc48/Makefile	Fri Nov  6 22:19:34 2020	(r554330)
@@ -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=ivybridge:N-march=westmere:N-mretpoline}
-CXXFLAGS:=	${CXXFLAGS:N-march=ivybridge:N-march=westmere:N-mretpoline}
+CFLAGS:=	${CFLAGS:N-march=haswell:N-march=ivybridge:N-march=westmere:N-mretpoline}
+CXXFLAGS:=	${CXXFLAGS:N-march=haswell:N-march=ivybridge:N-march=westmere:N-mretpoline}
 
 .include <bsd.port.pre.mk>
 



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