Hi, "Dominic Chambers" <[EMAIL PROTECTED]> writes:
> I was unable to 'make' ldst, and I'm not a C programmer so I don't know what > this stuff really means. It did seem to want a gc-7.0 folder, when in fact the > version I checked out was 6.7, but changing the config file to use that > version > didn't help. Any one know what this means?: > i686-pc-linux-gnulibc1: > TARGET = i686-pc-linux-gnulibc1 You appear to be running a Linux distribution of some sort. Which one? > make[2]: Entering directory `/home/dominic/cola/idst/object/id' > cc -g -Wall -Wreturn-type -Werror -D_GNU_SOURCE=1 -Wno-unused-value -w -g -O3 > -march=prescott -fomit-frame-pointer -falign-functions=16 -funroll-loops -I../ > stage1//include -DNDEBUG -DSYSARCH=\"i386\" -DSYSOS=\"linux\" > -DPREFIX='"/usr/ > local/lib/idc/i686-pc-linux-gnulibc1/"' libid.c -c -o ../stage1/libid.o > libid.c:1:58: error: stdio.h: No such file or directory > libid.c:2:20: error: stdlib.h: No such file or directory > libid.c:4:20: error: signal.h: No such file or directory > libid.c:5:20: error: setjmp.h: No such file or directory [...] These errors say you haven't installed your C library's development headers. On Debian/Ubuntu, you'd do "apt-get install glibc-dev"... I don't know the incantation for Red Hat-based (or Gentoo, or Slackware, or whatever) distros. I hope this helps, -- Michael FIG <[EMAIL PROTECTED]> //\ http://michael.fig.org/ \// _______________________________________________ fonc mailing list [email protected] http://vpri.org/mailman/listinfo/fonc
