Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/Platform/Linux/LinuxPlatformSDK.Versions.cs
Brandon Schaefer 895c73720f Move to new 15.0.1 LLVM Linux Toolchain
#jira UE-174139
#rb none
#fyi Ryan.Hummer, Zack.Neyland, Robert.Seiver, James.Singer
#preflight 63cedc59b91ac945f53281b9

[CL 23821785 by Brandon Schaefer in ue5-main branch]
2023-01-23 16:32:46 -05: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 "v21_clang-15.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 = "v21_clang-15.0.1-centos7";
MaxVersion = "v21_clang-15.0.1-centos7";
}
protected override void GetValidSoftwareVersionRange(out string? MinVersion, out string? MaxVersion)
{
MinVersion = MaxVersion = null;
}
}
}