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

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

Issue 69343013: [VS AddIn] Fix default library paths. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 1 month 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 383876425969334df4fe885401d5fdde9de1f684..71725dfe66d377293aa364222165e4c81c7b8ba2 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClCompile.cs
@@ -193,7 +193,7 @@ namespace NaCl.Build.CPPTasks
StringBuilder commandLine = new StringBuilder(GCCUtilities.s_CommandLineLength);
//build command line from components and add required switches
- string props = xamlParser.Parse(sourceFile, fullOutputName);
+ string props = xamlParser.Parse(sourceFile, fullOutputName, null);
commandLine.Append(props);
commandLine.Append(" -c");

Powered by Google App Engine
This is Rietveld 408576698