浏览代码

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

iOS: Disable armv7 as target arch by default
Rémi Verschelde 5 年之前
父节点
当前提交
0aea0d0b39
共有 1 个文件被更改,包括 1 次插入1 次删除
  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<EditorExportPlatformIOS::ExportArchitecture> EditorExportPlatformIOS::_get_supported_architectures() {
 	Vector<ExportArchitecture> archs;
 	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));
 	archs.push_back(ExportArchitecture("arm64", true));
 	return archs;
 	return archs;
 }
 }