Mail Archives: djgpp/1994/03/08/22:57:32
> Call frame traceback EIPs:
> 0x000000b2 0xb2
> ^^^^ this is what symify puts on the screen in
> bright white.
Are you sure you have debug info in the executable? Here's an extract from
my makefile (for OPUS MAKE) to show the link commands I use. (go32t is my
locally compiled version of go32.) I wouldn't be surprised if debug info
gets stripped by default if you let gcc invoke ld.
GCC_LINK_OPTS = -lc -lpc -Ld:/compiler/gpp/lib -M
WSGCC$(VER_NO).exe: $(GCCO)
echo $** > g:link.lst
ld d:\compiler\gpp\lib\crt0.o -o $* @g:link.lst $(GCC_LINK_OPTS) >g:gcc.map
!if !$d(NOSTRIP)
@echo Stripping all debug info from $*
strip --strip-all --verbose $*
!endif
coff2exe -s d:\compiler\gpp\go32\go32t.exe $*
stubedit $@ globbing=no
- Raw text -