From c89ec1ad524cf2f0c3b3912c39c1a66d7f6863e1 Mon Sep 17 00:00:00 2001 From: chenli Date: Sat, 10 May 2025 10:56:13 +0800 Subject: [PATCH] [openmp][LoongArch] Fix build after 5298e93560ddd --- openmp/runtime/src/kmp_platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmp/runtime/src/kmp_platform.h b/openmp/runtime/src/kmp_platform.h index 780ff3b185b3..d9fa8a7a4a91 100644 --- a/openmp/runtime/src/kmp_platform.h +++ b/openmp/runtime/src/kmp_platform.h @@ -210,7 +210,7 @@ // TODO: Fixme - This is clever, but really fugly #if (1 != KMP_ARCH_X86 + KMP_ARCH_X86_64 + KMP_ARCH_ARM + KMP_ARCH_PPC64 + \ KMP_ARCH_AARCH64 + KMP_ARCH_MIPS + KMP_ARCH_MIPS64 + \ - KMP_ARCH_RISCV64 + KMP_ARCH_LOONGARCH6464 + KMP_ARCH_SW64) + KMP_ARCH_RISCV64 + KMP_ARCH_LOONGARCH64 + KMP_ARCH_SW64) #error Unknown or unsupported architecture #endif -- Gitee