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

Unified Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerGDB.cs

Issue 10823267: NaCl VS Addin Crash Fix (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 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/NativeClientVSAddIn/PluginDebuggerGDB.cs
diff --git a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerGDB.cs b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerGDB.cs
index 2dbf6bbfabc4c9d270202018413cdd2aec6b8217..f4cebfe179bd270e6cd4bec86e72f39459e4cbc8 100644
--- a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerGDB.cs
+++ b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PluginDebuggerGDB.cs
@@ -67,7 +67,7 @@ namespace NativeClientVSAddIn
gdbPath_ = Path.Combine(
properties.SDKRootDirectory,
"toolchain",
- properties.PlatformToolset,
+ string.Concat("win_x86_", properties.ToolchainName),
@"bin\x86_64-nacl-gdb.exe");
PluginFoundEvent += new EventHandler<PluginFoundEventArgs>(Attach);

Powered by Google App Engine
This is Rietveld 408576698