mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-24 21:45:31 -04:00
[Server] Use __ARM_ARCH definition for detecting ARM
This commit is contained in:
parent
b847914d6f
commit
1f3cbb46e2
@ -47,7 +47,7 @@ void printVersion(string version, Version::Version ver, int protocol)
|
||||
cout << "64-bit";
|
||||
#elif defined(__i386__) || defined(_M_I86)
|
||||
cout << "32-bit";
|
||||
#elif defined(__arm__)
|
||||
#elif defined(__ARM_ARCH)
|
||||
cout << "ARMv" << __ARM_ARCH << " ";
|
||||
#ifdef __aarch64__
|
||||
cout << "64-bit";
|
||||
|
Loading…
x
Reference in New Issue
Block a user