diff --git a/src/dotnet/commands/dotnet-build/CompileContext.cs b/src/dotnet/commands/dotnet-build/CompileContext.cs index e66a08fd6..7e0e43957 100644 --- a/src/dotnet/commands/dotnet-build/CompileContext.cs +++ b/src/dotnet/commands/dotnet-build/CompileContext.cs @@ -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");