Date: Tue, 9 Oct 2018 22:22:15 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r339272 - head Message-ID: <201810092222.w99MMF1k066729@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brooks Date: Tue Oct 9 22:22:15 2018 New Revision: 339272 URL: https://svnweb.freebsd.org/changeset/base/339272 Log: 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 Modified: head/Makefile Modified: head/Makefile ============================================================================== --- head/Makefile Tue Oct 9 21:54:58 2018 (r339271) +++ head/Makefile Tue Oct 9 22:22:15 2018 (r339272) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810092222.w99MMF1k066729>