1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Merge pull request #13130 from endragor/gdnative-android-export

Proper GDNative export on Android
This commit is contained in:
Rémi Verschelde
2017-11-21 23:59:01 +01:00
committed by GitHub
3 changed files with 97 additions and 51 deletions

View File

@@ -554,7 +554,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;
}