diff options
author | hjk <qthjk@ovi.com> | 2012-07-25 03:43:14 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-07-25 10:39:14 +0200 |
commit | 6cbcdf243fa225be18fa4a3e6ab0dedf296bf7ef (patch) | |
tree | 55a0c9c15fca499c4c28de5452cb6ab05be319e9 /src/plugins/remotelinux | |
parent | 26e7ed14b7cc275c6975d24f3a13e0c81a050f2b (diff) | |
download | qt-creator-6cbcdf243fa225be18fa4a3e6ab0dedf296bf7ef.tar.gz |
debugger: remove unued gnutarget parameter
Change-Id: Ic1c663bb11f7bf9420b35686ddeb581d31242b7f
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/remotelinux')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxdebugsupport.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp index 3251cfeb9b..ead5c41193 100644 --- a/src/plugins/remotelinux/remotelinuxdebugsupport.cpp +++ b/src/plugins/remotelinux/remotelinuxdebugsupport.cpp @@ -117,14 +117,6 @@ DebuggerStartParameters AbstractRemoteLinuxDebugSupport::startParameters(const R params.startMode = AttachToRemoteServer; params.executable = runConfig->localExecutableFilePath(); params.remoteChannel = devConf->sshParameters().host + QLatin1String(":-1"); - - // TODO: This functionality should be inside the debugger. - ToolChain *tc = ToolChainProfileInformation::toolChain(profile); - if (tc) { - const Abi &abi = tc->targetAbi(); - params.gnuTarget = QLatin1String(abi.architecture() == Abi::ArmArchitecture - ? "arm-none-linux-gnueabi": "i386-unknown-linux-gnu"); - } } else { params.startMode = AttachToRemoteServer; } |