aboutsummaryrefslogtreecommitdiff
path: root/lib/libclang_rt
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2023-04-12 18:11:02 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2023-04-12 18:11:02 +0000
commit10172ce32c8f2f419ede51b675ed4d30036ef339 (patch)
treea184c8721200602eb9f2fdbd95569f10c769c625 /lib/libclang_rt
parentd27cc068387286b21c51ceac496c227986698790 (diff)
downloadsrc-10172ce32c8f2f419ede51b675ed4d30036ef339.tar.gz
src-10172ce32c8f2f419ede51b675ed4d30036ef339.zip
Stop stripping 'sf' suffixes from architecture names.
riscv64sf was the only architecture with an 'sf' suffix. Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D39497
Diffstat (limited to 'lib/libclang_rt')
-rw-r--r--lib/libclang_rt/compiler-rt-vars.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libclang_rt/compiler-rt-vars.mk b/lib/libclang_rt/compiler-rt-vars.mk
index 5658b94b312d..4515d8c98a28 100644
--- a/lib/libclang_rt/compiler-rt-vars.mk
+++ b/lib/libclang_rt/compiler-rt-vars.mk
@@ -9,7 +9,7 @@ SANITIZER_SHAREDIR= ${CLANGDIR}/share
(!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "")
CRTARCH?= armhf
.else
-CRTARCH?= ${MACHINE_ARCH:S/amd64/x86_64/:C/sf$//}
+CRTARCH?= ${MACHINE_ARCH:S/amd64/x86_64/}
.endif
.if ${COMPILER_TYPE} == "clang"