142 lines
No EOL
4.1 KiB
C#
142 lines
No EOL
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
using Microsoft.Dnx.Runtime.Common.CommandLine;
|
|
using Microsoft.DotNet.Cli.Utils;
|
|
using Microsoft.DotNet.Tools.Common;
|
|
|
|
namespace Microsoft.DotNet.Tools.Compiler.Native
|
|
{
|
|
public class MacCppCompileStep : IPlatformNativeStep
|
|
{
|
|
private const string CompilerName = "clang";
|
|
public const string InputExtension = ".cpp";
|
|
|
|
// TODO: debug/release support
|
|
private readonly string [] _cflags = { "-g", "-lstdc++", "-Wno-invalid-offsetof", "-pthread"};
|
|
|
|
// Link to iconv APIs
|
|
private const string LibFlags = "-liconv";
|
|
|
|
private readonly string[] _ilcSdkLibs =
|
|
{
|
|
"libbootstrappercpp.a",
|
|
"libPortableRuntime.a",
|
|
"libSystem.Private.CoreLib.Native.a"
|
|
};
|
|
|
|
private readonly string[] _appdeplibs =
|
|
{
|
|
"libSystem.Native.a"
|
|
};
|
|
|
|
|
|
private List<string> CompilerArgs { get; set; }
|
|
|
|
public MacCppCompileStep(NativeCompileSettings config)
|
|
{
|
|
InitializeArgs(config);
|
|
}
|
|
|
|
public int Invoke()
|
|
{
|
|
var result = InvokeCompiler();
|
|
if (result != 0)
|
|
{
|
|
Reporter.Error.WriteLine("Compilation of intermediate files failed.");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
public bool CheckPreReqs()
|
|
{
|
|
// TODO check for clang
|
|
return true;
|
|
}
|
|
|
|
private void InitializeArgs(NativeCompileSettings config)
|
|
{
|
|
var argsList = new List<string>();
|
|
|
|
// Flags
|
|
argsList.AddRange(_cflags);
|
|
|
|
var ilcSdkIncPath = Path.Combine(config.IlcSdkPath, "inc");
|
|
argsList.Add("-I");
|
|
argsList.Add($"{ilcSdkIncPath}");
|
|
|
|
// Input File
|
|
var inCppFile = DetermineInFile(config);
|
|
argsList.Add(inCppFile);
|
|
|
|
// Lib flags
|
|
argsList.Add(LibFlags);
|
|
|
|
// Pass the optional native compiler flags if specified
|
|
if (!string.IsNullOrWhiteSpace(config.CppCompilerFlags))
|
|
{
|
|
argsList.Add(config.CppCompilerFlags);
|
|
}
|
|
|
|
// ILC SDK Libs
|
|
var ilcSdkLibPath = Path.Combine(config.IlcSdkPath, "sdk");
|
|
foreach (var libPath in _ilcSdkLibs.Select(lib => Path.Combine(ilcSdkLibPath, lib)))
|
|
{
|
|
// Forward the library to linked to the linker
|
|
argsList.Add("-Xlinker");
|
|
argsList.Add(libPath);
|
|
}
|
|
|
|
// AppDep Libs
|
|
var baseAppDeplibPath = Path.Combine(config.AppDepSDKPath, "CPPSdk/osx.10.10/x64");
|
|
foreach (var appDeplibPath in _appdeplibs.Select(lib => Path.Combine(baseAppDeplibPath, lib)))
|
|
{
|
|
argsList.Add("-Xlinker");
|
|
argsList.Add(appDeplibPath);
|
|
}
|
|
|
|
// Output
|
|
var libOut = DetermineOutputFile(config);
|
|
argsList.Add($"-o");
|
|
argsList.Add($"{libOut}");
|
|
|
|
CompilerArgs = argsList;
|
|
}
|
|
|
|
private int InvokeCompiler()
|
|
{
|
|
var result = Command.Create(CompilerName, CompilerArgs)
|
|
.ForwardStdErr()
|
|
.ForwardStdOut()
|
|
.Execute();
|
|
|
|
return result.ExitCode;
|
|
}
|
|
|
|
private string DetermineInFile(NativeCompileSettings config)
|
|
{
|
|
var intermediateDirectory = config.IntermediateDirectory;
|
|
|
|
var filename = Path.GetFileNameWithoutExtension(config.InputManagedAssemblyPath);
|
|
|
|
var infile = Path.Combine(intermediateDirectory, filename + InputExtension);
|
|
|
|
return infile;
|
|
}
|
|
|
|
public string DetermineOutputFile(NativeCompileSettings config)
|
|
{
|
|
var intermediateDirectory = config.OutputDirectory;
|
|
|
|
var filename = Path.GetFileNameWithoutExtension(config.InputManagedAssemblyPath);
|
|
|
|
var outfile = Path.Combine(intermediateDirectory, filename);
|
|
|
|
return outfile;
|
|
}
|
|
}
|
|
} |