Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable compiling on x86 #63

Merged
merged 1 commit into from
Aug 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Include/Internal/arm_nn_compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
* -------------------------------------------------------------------- */
Expand Down Expand Up @@ -135,6 +135,10 @@
#include <arm_acle.h>
#endif

#if defined(__GNUC__)
#include <stdint.h>
#endif

/**
*
* @brief ACLE and Intrinsics
Expand Down Expand Up @@ -305,4 +309,4 @@ __STATIC_FORCEINLINE uint32_t SMULTT(uint32_t op1, uint32_t op2)

#endif

#endif /* #ifndef ARM_NN_COMPILER_H */
#endif /* #ifndef ARM_NN_COMPILER_H */