mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
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.
(cherry picked from commit 7f4ee36469)
This commit is contained in:
@@ -489,8 +489,10 @@ class EditorExportAndroid : public EditorExportPlatform {
|
||||
}
|
||||
|
||||
static Vector<String> get_abis() {
|
||||
// mips and armv6 are dead (especially for games), so not including them
|
||||
Vector<String> abis;
|
||||
// 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");
|
||||
|
||||
Reference in New Issue
Block a user