aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2018-10-09 22:22:15 +0000
committerBrooks Davis <brooks@FreeBSD.org>2018-10-09 22:22:15 +0000
commite6d4316a4503f230fcc123db5fb86b26937dca71 (patch)
treea0344029e55809089398a6480415b81fc602a8f6 /Makefile
parentc3fb2eae889ad52b1d812b67401c6c22ad914c82 (diff)
downloadsrc-e6d4316a4503f230fcc123db5fb86b26937dca71.tar.gz
src-e6d4316a4503f230fcc123db5fb86b26937dca71.zip
Don't include the broken riscv64sf TARGET_ARCH in universe.
riscv64sf has been broken due to duplicate symbols for months and degrades the quality of universe builds. Remove it until this is resolved leaving a comment to it is not re-added. PR: 232085 Reviewed by: emaste Approved by: re (gjb, kib) Sponsored by: DARPA, AFRL
Notes
Notes: svn path=/head/; revision=339272
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2e90e4801525..075c79a55b69 100644
--- a/Makefile
+++ b/Makefile
@@ -488,7 +488,8 @@ TARGET_ARCHES_arm?= arm armv6 armv7
TARGET_ARCHES_arm64?= aarch64
TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 mipselhf mipshf mips64elhf mips64hf
TARGET_ARCHES_powerpc?= powerpc powerpc64 powerpcspe
-TARGET_ARCHES_riscv?= riscv64 riscv64sf
+# riscv64sf excluded due to PR 232085
+TARGET_ARCHES_riscv?= riscv64
.for target in ${TARGETS}
TARGET_ARCHES_${target}?= ${target}
.endfor