From eac1a955ce726846d70e60267f57cd6d87b5190b Mon Sep 17 00:00:00 2001 From: klzgrad Date: Fri, 7 Feb 2025 20:29:32 +0800 Subject: [PATCH] Backport simdutf riscv v extension fix --- src/third_party/simdutf/simdutf.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/third_party/simdutf/simdutf.h b/src/third_party/simdutf/simdutf.h index c7eab89c2d..97b2e418fa 100644 --- a/src/third_party/simdutf/simdutf.h +++ b/src/third_party/simdutf/simdutf.h @@ -155,10 +155,11 @@ // RISC-V 64-bit #define SIMDUTF_IS_RISCV64 1 -#if __clang_major__ >= 19 -// Does the compiler support target regions for RISC-V -#define SIMDUTF_HAS_RVV_TARGET_REGION 1 -#endif + //#if __riscv_v_intrinsic >= 1000000 + // #define SIMDUTF_HAS_RVV_INTRINSICS 1 + // #define SIMDUTF_HAS_RVV_TARGET_REGION 1 + //#elif ... + // Check for special compiler versions that implement pre v1.0 intrinsics #if __riscv_v_intrinsic >= 11000 #define SIMDUTF_HAS_RVV_INTRINSICS 1