// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tools.DotNETCommon; namespace UnrealBuildTool { /// /// Public Linux functions exposed to UAT /// public class LinuxExports { /// /// /// /// /// public static void StripSymbols(FileReference SourceFile, FileReference TargetFile) { LinuxToolChain ToolChain = new LinuxToolChain(LinuxPlatform.DefaultArchitecture, new LinuxPlatformSDK()); ToolChain.StripSymbols(SourceFile, TargetFile); } } }