1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Proper GDNative export on Android

This commit is contained in:
Ruslan Mustakov
2017-11-21 01:12:36 +07:00
parent 5ff84070ca
commit ebf9b80a47
3 changed files with 97 additions and 51 deletions

View File

@@ -548,7 +548,7 @@ bool OS::has_feature(const String &p_feature) {
if (sizeof(void *) == 4 && p_feature == "32") {
return true;
}
#if defined(__x86_64) || defined(__x86_64__)
#if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__)
if (p_feature == "x86_64") {
return true;
}