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