Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs

Issue 12248006: [VS Addin] Fix parallel building. (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs
diff --git a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs
index 2b6bf403019d2d46afda1b6891c14a51bc6443e4..30600d460552ca92a8f2325eaa06aa499548904e 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs
@@ -373,11 +373,12 @@ namespace NaCl.Build.CPPTasks
foreach (KeyValuePair<string, List<ITaskItem>> entry in srcGroups)
{
string commandLine = entry.Key;
- string cmd = "\"" + pathToTool + "\" " + commandLine + "--";
+ string cmd = "\"" + pathToTool + "\" " + commandLine + " --";
List<ITaskItem> sources = entry.Value;
foreach (ITaskItem sourceItem in sources)
{
+ cmd += " ";
cmd += GCCUtilities.ConvertPathWindowsToPosix(sourceItem.ToString());
}

Powered by Google App Engine
This is Rietveld 408576698