Add cpp compiler flags

This commit is contained in:
Senthil 2016-02-25 18:12:00 -08:00
parent 178d05a5ec
commit f165aa5e68

View file

@ -357,6 +357,12 @@ namespace Microsoft.DotNet.Tools.Build
args.Add("--cpp");
}
if (!string.IsNullOrWhiteSpace(_args.CppCompilerFlagsValue))
{
args.Add("--cppcompilerflags");
args.Add(_args.CppCompilerFlagsValue);
}
if (!string.IsNullOrWhiteSpace(_args.ArchValue))
{
args.Add("--arch");