Results 1 to 5 of 5
Does anyone know what could be causung this error that I get when I run my program. The program accesses a text file. It was compiled with the GNU C ...
- 09-05-2010 #1Just Joined!
- Join Date
- Sep 2010
- Posts
- 3
dwarf_offdie: DW_DLE_DIE_ABBREV_LIST_NULL
Does anyone know what could be causung this error that I get when I run my program. The program accesses a text file. It was compiled with the GNU C compiler. Here is the error dwarf_offdie: DW_DLE_DIE_ABBREV_LIST_NULL .
Thanks,
Bob
- 09-06-2010 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
No clue - never seen this one before. What linux distribution+version, kernel (uname -r), and gnu compiler tool chain are you running?
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 09-07-2010 #3Just Joined!
- Join Date
- Sep 2010
- Posts
- 3
running the Makefile
Here is my makefile:
CC=/opt/gcc-4.0.3-sparc-sun-solaris2.9/bin/gcc
CPPFLAGS=-I/opt/libdwarf/include
CFLAGS=make
#-Wno-unused-parameter
LDLIBS=-lelf /opt/libdwarf/lib/libdwarf.a
all: mksymtab
mksymtab: mksymtab.c \
elf_symtab.c elf_symtab.h
clean:
$(RM) mksymtab
If I do a 'make mksymtab' should I get an executable?
(It runs with no errors but I don't get an executable).
- 09-07-2010 #4Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
The makefile looks suspicious to me, but then you haven't provided the platform (hardware), os (linux/solaris distribution+version), and kernel version (uname -r), so I really am not yet apprised with enough information to help further.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 09-09-2010 #5Just Joined!
- Join Date
- Sep 2010
- Posts
- 3
gmake got it to build.
however this has been overcome by events (no longer needed).
Thanks


Reply With Quote