From 3eeaed68f2034a32f2b87bb7d5d98da2d74259ce Mon Sep 17 00:00:00 2001 From: Wang Xiang Date: Thu, 6 Feb 2025 16:32:31 +0800 Subject: [PATCH] Fix memcpy not declar error. --- Common/Math/SIMDHeaders.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Common/Math/SIMDHeaders.h b/Common/Math/SIMDHeaders.h index 82b18e558c..13c120e669 100644 --- a/Common/Math/SIMDHeaders.h +++ b/Common/Math/SIMDHeaders.h @@ -67,6 +67,10 @@ static inline uint32x4_t vcgezq_f32(float32x4_t v) { #endif +#if PPSSPP_ARCH(LOONGARCH64) +#include "string.h" +#endif + #if PPSSPP_ARCH(SSE2) #if defined __SSE4_2__