Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/Platform/Linux/LinuxPlatformSDK.Versions.cs
brandon schaefer a8bef937c7 Force 5.0.3 to support only v20 LLVM 13.0.1
Due to v19 no linking correctly as well as older LLVM versions that dont support C++17 anyway

#jira UE-157592
#preflight 62b9f3f6e77151e599791232
#rb Joe.Kirchoff, Robert.Seiver, James.Singer
#lockdown jessica.agee

#ROBOMERGE-OWNER: brandon.schaefer
#ROBOMERGE-AUTHOR: brandon.schaefer
#ROBOMERGE-SOURCE: CL 20837379 in //UE5/Release-5.0/... via CL 20838337
#ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v971-20777995)

[CL 20840089 by brandon schaefer in ue5-main branch]
2022-06-27 17:21:45 -04:00

27 lines
677 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
namespace UnrealBuildTool
{
partial class LinuxPlatformSDK : UEBuildPlatformSDK
{
public override string GetMainVersion()
{
return "v20_clang-13.0.1-centos7";
}
protected override void GetValidVersionRange(out string MinVersion, out string MaxVersion)
{
// all that matters is the number after the v, according to TryConvertVersionToInt()
MinVersion = "v20_clang-13.0.1-centos7";
MaxVersion = "v20_clang-13.0.1-centos7";
}
protected override void GetValidSoftwareVersionRange(out string? MinVersion, out string? MaxVersion)
{
MinVersion = MaxVersion = null;
}
}
}