Date: Mon, 18 Feb 2019 21:52:49 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493328 - in head/devel: llvm40 llvm50 llvm60 llvm70 Message-ID: <201902182152.x1ILqnDt071357@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brooks Date: Mon Feb 18 21:52:49 2019 New Revision: 493328 URL: https://svnweb.freebsd.org/changeset/ports/493328 Log: Don't override the compiler on armv7. The base system compiler is now sufficent to build and link. No version bump. While technically required for armv7, forcing everyone to rebuild for this minor change that doesn't effect actual use is not justifiable. PR: 235282 Submitted by: jbeich Modified: head/devel/llvm40/Makefile head/devel/llvm50/Makefile head/devel/llvm60/Makefile head/devel/llvm70/Makefile Modified: head/devel/llvm40/Makefile ============================================================================== --- head/devel/llvm40/Makefile Mon Feb 18 21:52:28 2019 (r493327) +++ head/devel/llvm40/Makefile Mon Feb 18 21:52:49 2019 (r493328) @@ -334,7 +334,7 @@ PORTDOCS+= lld CXXFLAGS+= -D_GLIBCXX_USE_C99 .endif -.if ${ARCH} == armv6 || ${ARCH} == armv7 +.if ${ARCH} == armv6 BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin Modified: head/devel/llvm50/Makefile ============================================================================== --- head/devel/llvm50/Makefile Mon Feb 18 21:52:28 2019 (r493327) +++ head/devel/llvm50/Makefile Mon Feb 18 21:52:49 2019 (r493328) @@ -347,7 +347,7 @@ PORTDOCS+= lld CXXFLAGS+= -D_GLIBCXX_USE_C99 .endif -.if ${ARCH} == "armv6" || ${ARCH} == "armv7" +.if ${ARCH} == "armv6" BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin Modified: head/devel/llvm60/Makefile ============================================================================== --- head/devel/llvm60/Makefile Mon Feb 18 21:52:28 2019 (r493327) +++ head/devel/llvm60/Makefile Mon Feb 18 21:52:49 2019 (r493328) @@ -345,7 +345,7 @@ PORTDOCS+= lld CXXFLAGS+= -D_GLIBCXX_USE_C99 .endif -.if ${ARCH} == "armv6" || ${ARCH} == "armv7" +.if ${ARCH} == "armv6" BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin Modified: head/devel/llvm70/Makefile ============================================================================== --- head/devel/llvm70/Makefile Mon Feb 18 21:52:28 2019 (r493327) +++ head/devel/llvm70/Makefile Mon Feb 18 21:52:49 2019 (r493328) @@ -371,7 +371,7 @@ PORTDOCS+= lld CXXFLAGS+= -D_GLIBCXX_USE_C99 .endif -.if ${ARCH} == "armv6" || ${ARCH} == "armv7" +.if ${ARCH} == "armv6" BUILD_DEPENDS+= ${LOCALBASE}/bin/ld:devel/binutils CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin MAKE_ENV+= COMPILER_PATH=${LOCALBASE}/bin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902182152.x1ILqnDt071357>