On Feb 18, 2009, at 21:37 , David Erickson wrote:
I noticed that when you build NOX the build/src/nox_core file is actually a wrapper script that does some potential re-linking and other things before actually executing NOX. Is it possible via compile flags or other means to get the fully linked actual NOX executable in that directory ready to go and be debugged instead of having to be run with a script?
If you need a statically compiled binary, see src/Makefile.am for more information (from L60 onwards). However, if you only need to run gdb, valgrind or some other tool for the NOX and your applications, libtool's 'execute' mode should be enough. For example, 'libtool -- mode=execute gdb nox_core' does the necessary tricks to get gdb to load the nox_core binary.
Teemu _______________________________________________ nox-dev mailing list [email protected] http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org
