KDevelop4/Manual/Running programs: Difference between revisions
(→Some useful keyboard shortcuts: Tidied table) |
m (Formatting changes) |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
<translate> | <translate> | ||
== Running programs in KDevelop == | == Running programs in KDevelop == <!--T:1--> | ||
Once you have built a program, you will want to run it. To do this, need to configure | <!--T:2--> | ||
Once you have built a program, you will want to run it. To do this, need to configure ''Launches'' for your projects. A ''Launch'' consists of the name of an executable, a set of command line parameters, and an execution environment (such as "run this program in a shell", or "run this program in the debugger"). | |||
</translate><span id="Setting up launches in KDevelop"></span><translate> | </translate><span id="Setting up launches in KDevelop"></span><translate> | ||
=== Setting up launches in KDevelop === | === Setting up launches in KDevelop === <!--T:3--> | ||
<!--T:4--> | |||
[[Image:kdevelop-2.png|thumb|400px|center]] | [[Image:kdevelop-2.png|thumb|400px|center]] | ||
To set this up go to menu item <menuchoice>Run -> Configure launches</menuchoice>, highlight the project you want to add a launch for, and click on the | <!--T:5--> | ||
To set this up go to menu item <menuchoice>Run -> Configure launches</menuchoice>, highlight the project you want to add a launch for, and click on the {{Plus}} button. Then enter the name of the executable, and the path where you want to run the program. If running the executable depends on building the executable and/or other libraries first, then you may want to add them to the list at the bottom: select <menuchoice>Build</menuchoice> from the dropdown menu, then hit the {{Icon|folder}} symbol to the right of the textbox and select whatever target you want to have built. In the example above, I have selected the target <menuchoice>all</menuchoice> from project '''''1.deal.II''''' and '''''step-32''''' from project '''''1.step-32''''' to make sure both the base library and the application program have been compiled and are up to date before the program is actually executed. While you're there, you may as well also configure a debug launch by clicking on the <menuchoice>Debug</menuchoice> symbol and adding the name of the debugger program; if this is the system's default debugger (e.g. '''gdb''' on Linux), then you don't need to do this step. | |||
<!--T:6--> | |||
[[Image:kdevelop-3.png|thumb|650px|center]] | [[Image:kdevelop-3.png|thumb|650px|center]] | ||
You can now try to run the program: Select <menuchoice>Run -> Execute Launch</menuchoice> from '''KDevelop's''' main window menu (or hit <keycap>Shift+F9</keycap>) and your program should run in a separate subwindow of '''KDevelop'''. The picture | <!--T:7--> | ||
You can now try to run the program: Select <menuchoice>Run -> Execute Launch</menuchoice> from '''KDevelop's''' main window menu (or hit <keycap>Shift + F9</keycap>) and your program should run in a separate subwindow of '''KDevelop'''. The picture above shows the result: The new <menuchoice>Run</menuchoice> tool subwindow at the bottom shows the output of the program that is being run, in this case of the '''''step-32''''' program. | |||
{{Note|1= If you have configured multiple launches, you can choose which one should run when you hit <keycap>Shift+F9</keycap> by going to <menuchoice>Run -> Current Launch Configuration</menuchoice>. Unfortunately, by default, all launches are named ''New Native Application'' without an ''obvious'' possibility of renaming them, making it difficult to distinguish them when selecting the current launch configuration (see [https://bugs.kde.org/show_bug.cgi?id=272300 KDevelop bug 272300]). There is a non-obvious way to edit the name of a configuration, however: in the dialog box you get when you select <menuchoice>Run -> Current Launch Configuration</menuchoice>, double-click on the name of the configuration in the tree view on the left, which will allow you to edit the configuration's name.}} | <!--T:8--> | ||
{{Note|1= If you have configured multiple launches, you can choose which one should run when you hit <keycap>Shift + F9</keycap> by going to <menuchoice>Run -> Current Launch Configuration</menuchoice>. Unfortunately, by default, all launches are named ''New Native Application'' without an ''obvious'' possibility of renaming them, making it difficult to distinguish them when selecting the current launch configuration (see [https://bugs.kde.org/show_bug.cgi?id=272300 KDevelop bug 272300]). There is a non-obvious way to edit the name of a configuration, however: in the dialog box you get when you select <menuchoice>Run -> Current Launch Configuration</menuchoice>, double-click on the name of the configuration in the tree view on the left, which will allow you to edit the configuration's name.}} | |||
</translate><span id="Some useful keyboard shortcuts"></span><translate> | </translate><span id="Some useful keyboard shortcuts"></span><translate> | ||
=== Some useful keyboard shortcuts === | === Some useful keyboard shortcuts === <!--T:9--> | ||
</translate> | |||
{| class="tablecenter" style="border:1px solid" width="500" | {| class="tablecenter" style="border:1px solid" width="500" | ||
! colspan="2" style="background:#ffff99; text-align:center" | Running a program | ! colspan="2" style="background:#ffff99; text-align:center" |<translate> <!--T:13--> | ||
Running a program | |||
|- | |- | ||
<!--T:14--> | |||
| <keycap>F8</keycap> | | <keycap>F8</keycap> | ||
| Build (call make) | | Build (call make) | ||
|- | |- | ||
| <keycap>Shift+F9</keycap> | |||
<!--T:15--> | |||
| <keycap>Shift + F9</keycap> | |||
| Run | | Run | ||
|- | |- | ||
<!--T:16--> | |||
| <keycap>F9</keycap> | | <keycap>F9</keycap> | ||
| Run program in the debugger; you may want to set breakpoints beforehand, for example by right-clicking with the mouse on a particular line in the source code | | Run program in the debugger; you may want to set breakpoints beforehand, for example by right-clicking with the mouse on a particular line in the source code | ||
</translate>|}<translate> | |||
<!--T:11--> | |||
{{Prevnext2 | {{Prevnext2 | ||
| prevpage=Special:MyLanguage/KDevelop4/Manual/Building_(compiling)_projects_with_custom_Makefiles | nextpage=Special:MyLanguage/KDevelop4/Manual/Debugging_programs | | prevpage=Special:MyLanguage/KDevelop4/Manual/Building_(compiling)_projects_with_custom_Makefiles | nextpage=Special:MyLanguage/KDevelop4/Manual/Debugging_programs | ||
Line 44: | Line 60: | ||
}} | }} | ||
<!--T:12--> | |||
[[Category:Development]] | [[Category:Development]] | ||
</translate> | </translate> |
Latest revision as of 05:49, 12 June 2011
Running programs in KDevelop
Once you have built a program, you will want to run it. To do this, need to configure Launches for your projects. A Launch consists of the name of an executable, a set of command line parameters, and an execution environment (such as "run this program in a shell", or "run this program in the debugger").
Setting up launches in KDevelop
To set this up go to menu item button. Then enter the name of the executable, and the path where you want to run the program. If running the executable depends on building the executable and/or other libraries first, then you may want to add them to the list at the bottom: select from the dropdown menu, then hit the symbol to the right of the textbox and select whatever target you want to have built. In the example above, I have selected the target from project 1.deal.II and step-32 from project 1.step-32 to make sure both the base library and the application program have been compiled and are up to date before the program is actually executed. While you're there, you may as well also configure a debug launch by clicking on the symbol and adding the name of the debugger program; if this is the system's default debugger (e.g. gdb on Linux), then you don't need to do this step.
, highlight the project you want to add a launch for, and click on theYou can now try to run the program: Select Shift + F9) and your program should run in a separate subwindow of KDevelop. The picture above shows the result: The new tool subwindow at the bottom shows the output of the program that is being run, in this case of the step-32 program.
from KDevelop's main window menu (or hit
Some useful keyboard shortcuts
Running a program | |
---|---|
F8 | Build (call make) |
Shift + F9 | Run |
F9 | Run program in the debugger; you may want to set breakpoints beforehand, for example by right-clicking with the mouse on a particular line in the source code |