git: 998bc2159759 - main - sysutils/edk2: use default gcc
Roger Pau Monné
royger at FreeBSD.org
Thu May 20 06:59:54 UTC 2021
The branch main has been updated by royger (src committer):
URL: https://cgit.FreeBSD.org/ports/commit/?id=998bc21597591f98bcea13d513f31aaa2c9ef2ed
commit 998bc21597591f98bcea13d513f31aaa2c9ef2ed
Author: Roger Pau Monné <royger at FreeBSD.org>
AuthorDate: 2021-05-12 13:55:56 +0000
Commit: Roger Pau Monné <royger at FreeBSD.org>
CommitDate: 2021-05-20 06:57:27 +0000
sysutils/edk2: use default gcc
Builds fine with the default gcc version.
Reviewed by: manu
Approved by: manu
Differential revision: https://reviews.freebsd.org/D30328
---
sysutils/edk2/Makefile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/sysutils/edk2/Makefile b/sysutils/edk2/Makefile
index daf5a9a42247..babbfc495055 100644
--- a/sysutils/edk2/Makefile
+++ b/sysutils/edk2/Makefile
@@ -15,9 +15,9 @@ FLAVORS= macchiatobin rpi3 rpi4 xen_x64
FLAVOR?= macchiatobin
USES= gmake python:3.7+,build
+USE_GCC= yes:build
-BUILD_DEPENDS+= gcc8:lang/gcc8 \
- dtc>=1.4.1:sysutils/dtc \
+BUILD_DEPENDS+= dtc>=1.4.1:sysutils/dtc \
bash:shells/bash
# Both platform and non-osi repository don't have release, use latest known to work tag
@@ -36,9 +36,9 @@ GH_TUPLE= tianocore:edk2-platforms:${PLATFORM_TAG}:platforms \
BINARY_ALIAS= make=${LOCALBASE}/bin/gmake \
dtc=${LOCALBASE}/bin/dtc \
- gcc=${LOCALBASE}/bin/gcc8 \
- gcc-ar=${LOCALBASE}/bin/gcc-ar8 \
- g++=${LOCALBASE}/bin/g++8 \
+ gcc=${LOCALBASE}/bin/gcc${GCC_DEFAULT} \
+ gcc-ar=${LOCALBASE}/bin/gcc-ar${GCC_DEFAULT} \
+ g++=${LOCALBASE}/bin/g++${GCC_DEFAULT} \
python3=${PYTHON_CMD} python=${PYTHON_CMD}
.if ${FLAVOR} == macchiatobin
More information about the dev-commits-ports-all
mailing list