mirror of
https://github.com/AxioDL/boo.git
synced 2025-07-01 10:53:48 +00:00
Fix x86_64 arch define for MSVC
This commit is contained in:
parent
3280363b6d
commit
88cc539f16
@ -13,9 +13,9 @@
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#if __x86_64__
|
||||
#if defined(__x86_64__) || defined(_M_X64)
|
||||
#include <xmmintrin.h>
|
||||
#else
|
||||
#elif defined(__ARM_NEON)
|
||||
#include "sse2neon.h"
|
||||
#endif
|
||||
#include "internal.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user