diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-12-06 09:35:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-06 09:35:14 +0100 |
commit | 0aea0d0b39cfa8959350a0c89fde72d50999fc5f (patch) | |
tree | 938529f3ba1c39013e87309df516d75c7a45b9e6 | |
parent | 5f64d773ba146204649e3889d8ad482851e47507 (diff) | |
parent | 4a56b45f8789f7d270779bee492b094c4abb1d6c (diff) |
Merge pull request #34138 from akien-mga/ios-disable-armv7
iOS: Disable armv7 as target arch by default
-rw-r--r-- | platform/iphone/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 82c9508fdb..4f4439bc60 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -219,7 +219,7 @@ void EditorExportPlatformIOS::get_preset_features(const Ref<EditorExportPreset> Vector<EditorExportPlatformIOS::ExportArchitecture> EditorExportPlatformIOS::_get_supported_architectures() { Vector<ExportArchitecture> archs; - archs.push_back(ExportArchitecture("armv7", true)); + archs.push_back(ExportArchitecture("armv7", false)); // Disabled by default, not included in official templates. archs.push_back(ExportArchitecture("arm64", true)); return archs; } |