svn commit: r552977 - head/lang/gcc48
Gerald Pfeifer
gerald at FreeBSD.org
Thu Oct 22 13:41:32 UTC 2020
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
More information about the svn-ports-all
mailing list