mirror of
https://github.com/godotengine/godot.git
synced 2025-01-30 21:33:18 +08:00
Merge pull request #34138 from akien-mga/ios-disable-armv7
iOS: Disable armv7 as target arch by default
This commit is contained in:
commit
0aea0d0b39
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user