I have a large c++ project built with libtool. the problem is that eclipse will not run a libtool generated script, and I get a "Program is not a recognized executable." error message. how can I use eclipse debugger? I'm currently using kdevelop3 as an editor and debugging with insight.. which is horrible.
I could perhaps run the actual executable, thats in the ./libs of the project directory, but then I would have to manually set LD_LIBRARY_PATH and stuff like that... there must be a better way to so this.
any help would be appreciated!
Running a script instead of an executable is still unsupported in Eclipse, see this bug. Until the feature is introduced, you cannot debug a libtool-enabled project under Eclipse unless you keep something like a
path/to/configure --disable-shared
separate configuration, thus relying on static linking only for debugging purposes.
To do that, you
Open Project|Properties
from the top menu
Select Autotools|Configure Settings
from the left menu of the window
(Optionally) Create a new build configuration with a dedicated C/C++ Build|Builder Settings|Build location
Under configure|Advanced
, fill the "Additional command-line options" with --disable-shared
You can work around it by running the actual executable instead of the libtool script. The executable will generally be found in .libs/
. So in your debug configuration on the main tab set the value of C/C++ Application
to something like .libs/my_application
. Then all you'll need to do us update LD_LIBRARY_PATH
within your debug configuration.
Go to the environment tab of your debug configuration and make a new environment variable called LD_LIBRARY_PATH
. You'll want to append the .libs
directory to the path. So the value should look like this: ${project_loc}/.libs:$LD_LIBRARY_PATH
assuming your .libs
folder is right inside of the project directory.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With