From 7f4ee3646904fd90a6495b7549722acd9c8351af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 16 Jan 2019 11:16:00 +0100 Subject: 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. --- platform/android/export/export.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'platform/android/export') diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index f4a2a1020f..18b985bcf5 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -552,14 +552,13 @@ class EditorExportAndroid : public EditorExportPlatform { static Vector get_abis() { Vector 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; } -- cgit v1.2.3