in reply to Digest MD5 not compiling, err msg confusing

What does which gcc print, if you type it in the same shell (as the same user) where you typed make test?

And yes, you are reading it right, it means that the shell (/bin/sh) couldn't find the program gcc in $PATH.

Replies are listed 'Best First'.
Re^2: Digest MD5 not compiling, err msg confusing
by MidLifeXis (Monsignor) on Jul 15, 2009 at 15:41 UTC

    Just to expand a bit on moritz's fine answer: the first line that you see is make printing the next command that will be run. The last line is the output of the command, indicating that /bin/sh could not find gcc.

    --MidLifeXis

    The tomes, scrolls etc are dusty because they reside in a dusty old house, not because they're unused. --hangon in this post

Re^2: Digest MD5 not compiling, err msg confusing
by ARiccela (Novice) on Jul 16, 2009 at 11:13 UTC
    Well, this is interesting. I'm not quite sure how to interpret this...
    $ which gcc /usr/bin/which: no gcc in (/usr/kerberos/bin:/usr/local/bin:/bin:/usr/ +bin:/home/racmdb2/sqllib/bin:/home/racmdb2/sqllib/adm:/home/racmdb2/s +qllib/misc:/home/racm/bin)
    In our dev env the cmd outputs one line - /usr/bin/gcc. I've also found some other problems in this rebuilt box, not to be addressed here. But, if someone would explain the above, I'd appreciate it.
      It means that gcc is not installed (most likely, and contrary to what you thought), or is installed in a non-standard location that's not in path, or it's not executable, or there is no symlink to gcc, just a gcc-4.3 or whatever version you use.