KDevelop4/Manual/Running programs/uk: Difference between revisions

From KDE UserBase Wiki
(Created page with "{| class="tablecenter" style="border:1px solid" width="500" ! colspan="2" style="background:#ffff99; text-align:center" | Запуск програми |- | <keycap>F8</keycap...")
(Created page with "{{Prevnext2 | prevpage=Special:MyLanguage/KDevelop4/Manual/Building_(compiling)_projects_with_custom_Makefiles | nextpage=Special:MyLanguage/KDevelop4/Manual/Debugging_programs ...")
Line 35: Line 35:
{{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
| prevtext=Building (compiling) projects with custom Makefiles | nexttext=Debugging programs
| prevtext=Збирання (компіляція) проектів з нетиповими Makefile | nexttext=Зневаджування програм
| index=Special:MyLanguage/KDevelop4/Manual | indextext=Back to menu
| index=Special:MyLanguage/KDevelop4/Manual | indextext=Повернутися до меню
}}
}}


[[Category:Development]]
[[Category:Development]]

Revision as of 08:59, 20 May 2011

Other languages:

Запуск програм у 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").

Налаштування запуску у KDevelop

To set this up go to menu item Run -> Configure launches, highlight the project you want to add a launch for, and click on the red + 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 Build from the dropdown menu, then hit the folder symbol to the right of the textbox and select whatever target you want to have built. In the example to the right, I have selected the target all 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 Debug 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.

You can now try to run the program: Select Run -> Execute Launch from KDevelop's main window menu (or hit Shift+F9) and your program should run in a separate subwindow of KDevelop. The picture at the right shows the result: The new Run tool subwindow at the bottom shows the output of the program that is being run, in this case of the step-32 program.

Note

If you have configured multiple launches, you can choose which one should run when you hit Shift+F9 by going to Run -> Current Launch Configuration. 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 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 Run -> Current Launch Configuration, 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.


Деякі корисні клавіатурні скорочення

Запуск програми
F8 Зібрати (викликати make)
Shift+F9 Виконати
F9 Виконати програму під керування зневадника. Перед таким запуском варто встановити точки зупину: для цього достатньо клацнути правою кнопкою у відповідному рядку коду і вибрати пункт контекстного меню, пов’язаний зі встановленням точки зупину.