Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are the Eclipse CDT Debug Configurations stored?

I've got a C/C++ project with a custom debug configuration. That is, under Debug Configurations, I selected C/C++ Application and then hit the "New" button. I named this configuration MyTestingDebugConfiguration.

I've applied the changes and closed eclipse.

Where is this debug configuration named "MyTestingDebugConfiguration" stored? I don't see it listed in the .cproject file or the .project file. I'm assuming it is stored in xml somewhere on my filesystem. But I can't find it.

Note: My debug configuration points to a binary that is not in my project tree. I also declare an environment variable. I'd like to know where this configuration is stored on disk.

Thanks in advance!

like image 937
slow-runner Avatar asked Sep 03 '13 02:09

slow-runner


People also ask

Where are launch configurations Eclipse?

Getting to the launch configuration parameter editor:Click on "Project/Properties" in the main menu. Note: There is a shortcut to manage all the launch configurations in the entire workspace in the pull-down menu below the green "Run" button on the main Eclipse toolbar.

How do I know if Eclipse CDT is installed?

Click 'Help > About Eclipse' and then click the 'Installation Details' button at the bottom of the dialog. The resulting dialog shows all the features you have installed on the 'Installed Software' tab.


1 Answers

Launch configurations are stored in your workspace .metadata folder as ".launch" files, in

<workspace root>\.metadata\.plugins\org.eclipse.debug.core\.launches
like image 192
mat101 Avatar answered Sep 19 '22 06:09

mat101