- Apr 18, 2013
-
-
Aurindam Jana authored
Use QTcpServer instead of TcpPortsGatherer. Change-Id: I85133c5ae192b407009c5b21df332c9d3d94acda Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
Aurindam Jana <aurindam.jana@digia.com>
-
- Apr 11, 2013
-
-
Tobias Hunger authored
Change-Id: If878e22cc2715d05bb3e65ad908cd4fb5e21b03b Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- Apr 05, 2013
-
-
Tobias Hunger authored
Move the method used to create a config widget for a RunConfigurationAspect from the RunControlFactory into the aspect itself. This allows for aspects that are not bound to any factory, which is what I eventually want to use to hold the environment for run configurations. Change-Id: Icceb5f44ca9eb63a87b9c7bb6468ff30dab943c2 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Tobias Hunger authored
Change-Id: I03cab5d963a6d7c77171efe360a552d8109f6a8b Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Tobias Hunger authored
NOTE: Next patch will be "Move DRCA to Debugger plugin" and is needed to make this functional. Change-Id: Ie405a0e4fbdc0fb35ff16d34c725e7aee5153a4a Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Aurindam Jana authored
Show desktop device in the Devices options page. Allow user to configure the port range for the desktop. These ports can then be used by others such as QML Debugger. Change-Id: I8c4a96207e54f58d1e9bc18c417cb378dc9f70c2 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Mar 22, 2013
-
-
hjk authored
Change-Id: Ie6b9cb68045db12cff1bbb06a7049529fc39c21f Reviewed-by:
hjk <hjk121@nokiamail.com>
-
Friedemann Kleint authored
Change-Id: Ia50e61a82101b699390b23b4f1ea9509619314bb Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Feb 20, 2013
-
-
hjk authored
This is the approach directly linking to the lldb library. Change-Id: I5d51ad59d8292b46539a55da8e23918fb7de9a92 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- Feb 07, 2013
-
-
Sergio Ahumada authored
Task-number: QTCREATORBUG-8189 Change-Id: I1c882f55eed901620ef4944bf1789645b7cff34a Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 29, 2013
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 28, 2013
-
-
Tobias Hunger authored
I ran once too often into them being called applicationrunconfiguration.(h|cpp)! Change-Id: I280a3280173b80d4d955faddedf11688786eee14 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- Jan 08, 2013
-
-
Orgad Shaneh authored
#!/usr/bin/env ruby Dir.glob('**/*.cpp') { |file| # skip ast (excluding paste, astpath, and canv'ast'imer) next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i s = File.read(file) next if s.include?('qlalr') orig = s.dup s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m| res = $& if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces res else res.gsub!('} else', 'else') res.gsub!(/\n +} *\n/m, "\n") res.gsub(/ *{$/, '') end } s.gsub!(/ *$/, '') File.open(file, 'wb').write(s) if s != orig } Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 20, 2012
-
-
Kai Koehne authored
The variable is actually used. Change-Id: I4b0510b2bad9d3f3f49609dcac5b314da5769c1e Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 02, 2012
-
-
Friedemann Kleint authored
- Introduce constants for task categories, add "RunTime". - Log exceptions under "RunTime". - Clear pane on debugger start. - Add 'first chance' Task-number: QTCREATORBUG-8141 Change-Id: Icf68def06c42a0f3bb86dcc2ae74750b5397ca52 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Sep 25, 2012
-
-
Christian Kandeler authored
This use case is deprecated in Qt 5. Use QPointer instead. Change-Id: Id6c32542032656d7cb31cf838d93a680ab9e9327 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Sep 18, 2012
-
-
Friedemann Kleint authored
Prevent dialog showing "No executable" when canceling the prompt for the executable when pressing 'Run' / 'Debug' on a library project. Introduce new LocalApplicationRunControl::ensureConfigured() to ensure the configuration is complete and detect cancel via empty/non-null strings. Change-Id: I9bd4a296e7c995d26d6ad265519e7ebd3f98d6fe Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
- Sep 05, 2012
-
-
Friedemann Kleint authored
Introduce a struct DebuggerItem as a debugger configuration item, containing debugger engine type and binary. Store information as a variant map. Add a combo box. Remove engine guessing logic. Parts of it are still required when checking the suggested debugger from the SDK. Split error checking to be able to do a quick error check and find only valid profiles in the matchers. Pass on errors up to RunControl::create(). Change-Id: I08653e2a76ca2c371701082f8173b0b8f8ed462e Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Daniel Teske authored
And add a few helpful error messages Task-number: QTCREATORBUG-7826 Change-Id: Ia9f9fa476cecf2cff198bc460408bc062e119338 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Sep 04, 2012
-
-
Tobias Hunger authored
* Rename profiles to kits. * Update some strings: * projects mode has a Kits tab, not a Targets tab. * " Settings" was dropped from the sub-tabs of the Kits tab * menu entry "Build/Open Build/Run Target Selector" was renamed to "Build/Open Build and Run Kits Selector". * Use "Kit" instead of "Target" in miniprojecttargetselector. (The class was not renamed as it does indeed select targets, not kits) Change-Id: I0727e086e2dfa0e8aaaf89fdc6f2e3596c7a4314 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Aug 23, 2012
-
-
Friedemann Kleint authored
Remove the RunConfiguration parameter from guessCppEngineType() and use the DebuggerStartParameter::toolChainAbi only. Use fillParameter() to set the debugger command and toolchain in order to prevent mismatches. Add logic trying to figure out the profile to fillParameters() in case the profile passed in is 0 for the command line cases. Use CDB matcher for post mortem and Remote CDB, fix it to prefer 64bit CDB on 64bit OS. Change-Id: Icedc3883fe15660303060498ab609957e6d01cd1 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Aug 16, 2012
-
-
hjk authored
Change-Id: Ifaf663ee1827976e45e68e309b19c2f233a05ac1 Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Change-Id: Id59c9df315f7b19cd8a705e4283e749fb71b4dce Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
The master engine pointer can be given later. Change-Id: I4d72679dcbd5fe7291067a5e78c984d26cc187aa Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
With profiles we have more reliable information, no need for some of the guessing anymore. Change-Id: I1818fbb112d44c99ef96c8643256432805a1b97b Reviewed-by:
Joerg Bornemann <joerg.bornemann@nokia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
- Aug 14, 2012
-
-
hjk authored
This was mostly useful in cases where the guessing magic failed. With the new Profiles, the debugger engines can be adjusted there. Change-Id: I96622775588bb46c3e4e35af27e352593eb405d1 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Aug 13, 2012
-
-
Tobias Hunger authored
* Handle 0 when calling createTarget to avoid the crashes in the first place * Do not try to create/add targets for 0 profiles to avoid creator writing a warning to the console * Fix possible crashes in debugger when no default profile is set. Task-number: QTCREATORBUG-7695 Change-Id: I9afc8e29c8b859ad078dad794ef5017168daac78 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Aug 12, 2012
-
-
hjk authored
Change-Id: I6ed602a7cf498d56fa79cef72aebe7742bc50075 Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Add 'using', braces, line length... Change-Id: Iefbe081e33301d39f729906d181dcad4f6c8f2a4 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jul 19, 2012
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- Jun 28, 2012
-
-
hjk authored
This replaces the debugger command, sysroot and target abi fields with a profile id. Change-Id: I831c42ff8624fcfa520c2f28f6f06d73191b2680 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Tobias Hunger authored
Change-Id: If630ba9b3d108c2b81316555e67d4bc6a6beb098 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jun 21, 2012
-
-
Tobias Hunger authored
Introduce Profiles to store sets of values that describe a system/device. These profiles are held by a target, getting rid of much of the information stored in the Build-/Run-/DeployConfigurations, greatly simplifying those. This is a squash of the wip/profile branch which has been on gerrit for a while, rebased to current master. Change-Id: I25956c8dd4d1962b2134bfaa8a8076ae3909460f Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jun 13, 2012
-
-
Aurindam Jana authored
In the case of Attach to Remote Process, try connecting immediately. While, in the case of Attach to Remote Server, wait for output message or timeout. Change-Id: I94570a2ab05bb069ea64819fcbb0055555fe0f33 Reviewed-by:
Christian Kandeler <christian.kandeler@nokia.com>
-
- Jun 06, 2012
-
-
hjk authored
Change-Id: I650d666a3d1eef23cbf34b0d7a3308666abcd42c Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jun 05, 2012
-
-
hjk authored
Change-Id: I3ea5ddd608ff9e6764a995dc042466d436ca8474 Reviewed-by:
hjk <qthjk@ovi.com>
-
- May 18, 2012
-
-
Tobias Hunger authored
* Move debugginghelper to QtSupport. ProjectExplorer should not start looking for Qt versions! * Make autotools and generic project plugins depend on QtSupport Change-Id: If28418a85e3696cba713e66148c893a5a9b6adc7 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Apr 24, 2012
-
-
hjk authored
* add a few Q_OBJECT * change DebuggerRunControl::tr() to DebuggerPlugin::tr() Change-Id: I7ed973ea71b3492e91b45784595d9471587f72ea Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Apr 17, 2012
-
-
hjk authored
The result of using gdb on msvc compiled binaries is not satisfactory. It essentially shows raw disassembly only and allows switching threads after user initiated stops. No breakpoints etc. It is expected that people would never use the msvc/gdb combination consciously so it seems better to not provide the feature at all. Change-Id: I8918103e44643bfa1ad0b419a911a232f8a5299e Task-number: QTCREATORBUG-7309 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
David Schulz <david.schulz@nokia.com>
-