Originally posted by: n0cmonkey
This is going off of memory, so if it doesn't work post back.
rpm -qa | grep binutil
This should tell you if binutils is installed. -qa I believe searches the rpm db to see what is installed, and the grep limits the response to what you want to see.
If binutils is installed:
echo $PATH
It should look something like:
/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:.
I think (not positive -checked RH, no mandrake available) that ld is in /usr/bin. You can also try:
locate ld or
find / -name ld
They should tell you where ld is, if it is installed.
The CC problem should be simple, if you have gcc installed.
CC=/usr/bin/gcc;export CC
It's an environment variable that should be set. But if you don't have gcc installed it might be a problem.
You can check out urpmi, I think it will help you install various packages. Another thing you can try is looking on the cdrom you burned for the appropriate packages. You should have some kind of development packages (binutils, gcc, etc) that should have been installed during the installation.
This is one of the problems for such a customized install, newbies don't always know what to install, and someone that is used to another system might skip something they need because of the unfamiliar install. *sigh*