gcc cannot find -lc library
I'm atempting to compile bash, and gcc gives the following error (when trying to link, I'm guessing). I gather that it cannot find a library, but I have no idea what "-lc" is, or where I can find it. Any ideas? Thanks much!
-bash-2.05b$ gcc -s -static -rdynamic -g -O2 -o mkbuiltins mkbuiltins.o
/usr/bin/ld: cannot find -lc
collect2: ld returned 1 exit status
-bash-2.05b$
|