I am currently on chapter 6.17 in the LFS book. After following the book's instructions and then running the
make command, I receive the following error:
Code:
gcc -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Wold-style-definition -Wc++-compat -DHAVE_CONFIG_H -I. -I. -I../../gcc-4.6.1/gcc -I../../gcc-4.6.1/gcc/. -I../../gcc-4.6.1/gcc/../include -I../../gcc-4.6.1/gcc/../libcpp/include -I../../gcc-4.6.1/gcc/../libdecnumber -I../../gcc-4.6.1/gcc/../libdecnumber/bid -I../libdecnumber insn-emit.c -o insn-emit.o
/tmp/ccIITB18.s: Assembler messages:
/tmp/ccIITB18.s: Fatal error: can't write insn-emit.o: No space left on device
/tmp/ccIITB18.s: Fatal error: can't close insn-emit.o: No space left on device
make[2]: *** [insn-emit.o] Error 1
make[2]: Leaving directory `/sources/gcc-build/gcc'
make[1]: *** [all-gcc] Error 2
make[1]: Leaving directory `/sources/gcc-build'
make: *** [all] Error 2
I am using Ubuntu 11.10 x86_64. Does anyone know how to solve this error?
-Aaron