[Bug 58999] debugger will not start
Christian Loose
christian.loose at hamburg.de
Sat Sep 27 00:33:05 UTC 2003
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=58999
------- Additional Comments From christian.loose at hamburg.de 2003-09-27 00:32 -------
I also had problem to start the debugger for my project.
For me it seems to be a libtool problem. I use the libtool version 1.4.3 (1.922.2.110
2002/10/23 01:39:54). When I tried to start the debugger I got the following error
message (with --debug for libtool added):
+ eval exec '"$cmd"$args'
++ exec gdb '"/home/kdecvs/emu2509/debug/src/.libs/lt-emu2509"' '"--fullname"' '"--
nx"'
Excess command line arguments ignored. ("--nx")
"/home/kdecvs/emu2509/debug/src/.libs/lt-emu2509": File or directory not found.
/home/kdecvs/emu2509/"--fullname": File or directory not found.
So I changed the following lines in the /home/kdecvs/emu2509/debug/libtool script:
# Quote arguments (to preserve shell metacharacters).
file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
args="$args \"$file\""
to
# Quote arguments (to preserve shell metacharacters).
file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
args="$args $file"
and it works now.
I hope it helps...
Christian Loose
More information about the KDevelop-devel
mailing list