Replies: 1 comment 2 replies
-
I succeeded in building ARM64EC by changing the build format from MakeFile to static library. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can add an ARM64EC build?
The ARM64EC solution platform was added in visual studio 2022, but the actual build is done in ARM64.
Additionally, even if set to ARM64EC, ARM64 from the list below will be activated.
#if !defined(68K) && !defined(MPPC) && !defined(X86) && !defined(IA64) && !defined(AMD64) && !defined(ARM) && !defined(ARM64) && !defined(ARM64EC) && defined(_M_ARM64)
#define ARM64
#endif
#if !defined(68K) && !defined(MPPC) && !defined(X86) && !defined(IA64) && !defined(ARM) && !defined(ARM64) && !defined(ARM64EC) && defined(_M_ARM64EC)
#define ARM64EC
#endif
detours is built with MakeFile so I don't know what information to add.
I asked a question about ARM64 below, but I am not interested, so I am researching other methods.
#292
Beta Was this translation helpful? Give feedback.
All reactions