Someone,
I installed gcc and gdb but when I compile a simple hello world program I get the message:
error trying to exec as: execvp
As far as I can tell this means the assembler is not present.  I do not see as in /usr/local/bin, but I do see gcc there.
Any and all help always greatly appreciated.
The code looks like this:
#include <stdio.h>
int main(void)
{
   printf("Hey how r ya");
   return(0);
}