mirror of https://github.com/axmolengine/axmol.git
9 lines
241 B
ArmAsm
9 lines
241 B
ArmAsm
|
// By halx99, This file is only workaround for build ios combined archs
|
||
|
#if defined(__APPLE__)
|
||
|
#if defined(__arm__)
|
||
|
#include "arm/jsimd_neon.S"
|
||
|
#elif defined(__arm64__)
|
||
|
#include "arm64/jsimd_neon.S"
|
||
|
#endif
|
||
|
#endif
|