diff options
author | Daniel Teske <[email protected]> | 2013-01-25 16:49:22 +0100 |
---|---|---|
committer | Daniel Teske <[email protected]> | 2013-02-07 19:21:20 +0100 |
commit | 4a890f6d4718073ec13b264ffb037a6f0fb984a7 (patch) | |
tree | 6d76d4ffbb6fcbf76d62157dd510eef9c195f031 /src/plugins/android/androidrunconfiguration.cpp | |
parent | 66fefcd14ccec97a4670eb9ec73dc29ed72ade33 (diff) |
Simplify Android settings, move debugger/gdbserver to Kit
Creator now realiable creates one toolchain for each toolchain found in
the ndk. This no longer depends on any qt versions being present.
Also the gdb command and gdb server command are moved to the Kit and are
no longer found in the Android Options page. Both settings can be
autodetected from the Kit options page. Note that this might break
existing android kits.
Change-Id: I1dce084f2bb372e615e19b1c9e3a1e205b5d9647
Reviewed-by: BogDan Vatra <[email protected]>
Diffstat (limited to 'src/plugins/android/androidrunconfiguration.cpp')
-rw-r--r-- | src/plugins/android/androidrunconfiguration.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/android/androidrunconfiguration.cpp b/src/plugins/android/androidrunconfiguration.cpp index be6cd353a86..45e9e091b98 100644 --- a/src/plugins/android/androidrunconfiguration.cpp +++ b/src/plugins/android/androidrunconfiguration.cpp @@ -84,14 +84,6 @@ AndroidConfig AndroidRunConfiguration::config() const return AndroidConfigurations::instance().config(); } -const Utils::FileName AndroidRunConfiguration::gdbCmd() const -{ - ToolChain *tc = ToolChainKitInformation::toolChain(target()->kit()); - if (!tc) - return Utils::FileName(); - return AndroidConfigurations::instance().gdbPath(tc->targetAbi().architecture()); -} - AndroidDeployStep *AndroidRunConfiguration::deployStep() const { AndroidDeployStep * const step |