Procházet zdrojové kódy

Merge pull request #34138 from akien-mga/ios-disable-armv7

iOS: Disable armv7 as target arch by default
Rémi Verschelde před 5 roky
rodič
revize
0aea0d0b39
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      platform/iphone/export/export.cpp

+ 1 - 1
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;
 }