Re: Bundles: debugging and more
Re: Bundles: debugging and more
- Subject: Re: Bundles: debugging and more
- From: email@hidden
- Date: Tue, 31 Jul 2001 14:04:46 -0400
Le Mardi 31 juillet 2001, ` 11:38, Rainer Brockerhoff a icrit :
Date: Tue, 31 Jul 2001 13:41:25 +0200
From: =?iso-8859-1?Q?"Daniel=20K=E4smayr"?= <email@hidden>
I have an application that is designed in a way that most
functionality sits inside of seperate Bundles. Like a "Viewer" bundle,
one uses OpenGL, another uses Quartz, etc. Everything works fine
ecxept 2 things:
1. How do I debug code that is inside a bundle? When I set a break
point in Project Builder the code doesnt stop when I run the debugger.
Of course, I run the debugger on the main app, since the bundle itself
wont run...is there a way to do this?
you can manually add an executable to your bundle ...
edit your bundle target,
select the Executable tab,
there is a textfield and a button to add executable. The executable
will be used in gdb. Assuming that this executable will load your
bundle, this is how you debug a bundle.
- jfv