diff options
author | brooks <brooks@FreeBSD.org> | 2019-02-19 05:52:49 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2019-02-19 05:52:49 +0800 |
commit | a73b2d6b0c4df7541cf15cfd15ab0365a1d40555 (patch) | |
tree | 7b44459079222e9502fb7566d2f8625e14df9f44 | |
parent | 640c62f9715906a393ffe6eaed7445d86eb49dd0 (diff) | |
download | freebsd-ports-gnome-a73b2d6b0c4df7541cf15cfd15ab0365a1d40555.tar.gz freebsd-ports-gnome-a73b2d6b0c4df7541cf15cfd15ab0365a1d40555.tar.zst freebsd-ports-gnome-a73b2d6b0c4df7541cf15cfd15ab0365a1d40555.zip |
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
-rw-r--r-- | devel/llvm40/Makefile | 2 | ||||
-rw-r--r-- | devel/llvm50/Makefile | 2 | ||||
-rw-r--r-- | devel/llvm60/Makefile | 2 | ||||
-rw-r--r-- | devel/llvm70/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/devel/llvm40/Makefile b/devel/llvm40/Makefile index 40deed21978b..e3158f0a28ab 100644 --- a/devel/llvm40/Makefile +++ b/devel/llvm40/Makefile @@ -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 diff --git a/devel/llvm50/Makefile b/devel/llvm50/Makefile index 14083df8d79c..887891c773ff 100644 --- a/devel/llvm50/Makefile +++ b/devel/llvm50/Makefile @@ -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 diff --git a/devel/llvm60/Makefile b/devel/llvm60/Makefile index a6dd6f6bc592..04e1b966ddea 100644 --- a/devel/llvm60/Makefile +++ b/devel/llvm60/Makefile @@ -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 diff --git a/devel/llvm70/Makefile b/devel/llvm70/Makefile index 0e43a5607147..062323ab1b6f 100644 --- a/devel/llvm70/Makefile +++ b/devel/llvm70/Makefile @@ -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 |