Android: Add support for x86_64 architecture

Like arm64v8, this is only supported by API 21 and later,
so we enforce 21 as min API for x86_64.

Part of #25030.
This commit is contained in:
Rémi Verschelde
2019-01-16 11:16:00 +01:00
parent f0893235a5
commit 7f4ee36469
4 changed files with 21 additions and 7 deletions

View File

@@ -552,14 +552,13 @@ class EditorExportAndroid : public EditorExportPlatform {
static Vector<String> get_abis() {
Vector<String> abis;
// We can still build armv7 in theory, but it doesn't make much
// We can still build armv6 in theory, but it doesn't make much
// sense for games, so disabling for now.
//abis.push_back("armeabi");
abis.push_back("armeabi-v7a");
abis.push_back("arm64-v8a");
abis.push_back("x86");
// Don't expose x86_64 for now, we don't support it in detect.py
//abis.push_back("x86_64");
abis.push_back("x86_64");
return abis;
}