Skip to content
Snippets Groups Projects
Commit 04d2bfa8 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Trk: Load symbol file correctly on Windows

parent 1fad39c9
No related branches found
No related tags found
No related merge requests found
......@@ -1460,6 +1460,8 @@ void TrkGdbAdapter::startAdapter()
m_remoteExecutable = parameters.processArgs.at(1);
m_symbolFile = parameters.processArgs.at(2);
}
// Unixish gdbs accept only forward slashes
m_symbolFile.replace(QLatin1Char('\\'), QLatin1Char('/'));
// Start
QTC_ASSERT(state() == EngineStarting, qDebug() << state());
setState(AdapterStarting);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment