From 19de71a82bc0fe462395b6f5eb40ad2662255195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Nilsson?= Date: Wed, 9 Aug 2023 15:24:15 +0200 Subject: [PATCH] Enable compiling on x86 Change-Id: Ifbae5a27ee26490ca567692dc9e7aed2cb4ed11b --- Include/Internal/arm_nn_compiler.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Include/Internal/arm_nn_compiler.h b/Include/Internal/arm_nn_compiler.h index e4472639..a4821c38 100644 --- a/Include/Internal/arm_nn_compiler.h +++ b/Include/Internal/arm_nn_compiler.h @@ -21,8 +21,8 @@ * Title: arm_nn_compiler.h * Description: Generic compiler header * - * $Date: 31 January 2023 - * $Revision: V.1.1.0 + * $Date: 09 August 2023 + * $Revision: V.1.2.0 * * Target : Arm(R) M-Profile Architecture * -------------------------------------------------------------------- */ @@ -135,6 +135,10 @@ #include #endif +#if defined(__GNUC__) + #include +#endif + /** * * @brief ACLE and Intrinsics @@ -305,4 +309,4 @@ __STATIC_FORCEINLINE uint32_t SMULTT(uint32_t op1, uint32_t op2) #endif -#endif /* #ifndef ARM_NN_COMPILER_H */ \ No newline at end of file +#endif /* #ifndef ARM_NN_COMPILER_H */