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