The branch main has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=21d2d29f5901ca2c5fe626ca38490d3e8bb4c14e

commit 21d2d29f5901ca2c5fe626ca38490d3e8bb4c14e
Author:     John Baldwin <[email protected]>
AuthorDate: 2022-06-30 17:02:37 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2022-06-30 17:02:37 +0000

    libclang_rt: Trim a few more MIPSisms.
    
    The only FreeBSD architectures ending in 'hf' were MIPS hard-float
    architectures.
    
    Reviewed by:    emaste
    Sponsored by:   DARPA
    Differential Revision:  https://reviews.freebsd.org/D35591
---
 lib/libclang_rt/compiler-rt-vars.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libclang_rt/compiler-rt-vars.mk 
b/lib/libclang_rt/compiler-rt-vars.mk
index 2d0c36ba451f..f36b5a19a720 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/hf$//:C/sf$//:S/mipsn32/mips64/}
+CRTARCH?=      ${MACHINE_ARCH:S/amd64/x86_64/:C/sf$//}
 .endif
 
 .if ${COMPILER_TYPE} == "clang"

Reply via email to