|
Probably because the directory where libgcc_s.so.1 sits, is not known by the dynamic linker as a place to search for .so files.
Try to fix this by entering:
export LD_LIBRARY_PATH=/home/gcc-build/gcc
before compiling. See also:
man 1 ldd
man 8 ld.so
man 8 ldconfig
|