coriolinus wrote:
Actually, that's not the problem.
The file which is not found is the compiler itself:
gcc34:No such file or directory
Maybe you've installed gcc 4.3 from ports, linked /usr/bin/cc to
/usr/local/bin/gcc43 and then upgrade gcc?
That doesn't seem right:
[EMAIL PROTECTED] /usr/src]$ which gcc34
/usr/local/bin/gcc34
[EMAIL PROTECTED] /usr/src]$ su
Password:
[EMAIL PROTECTED] /usr/src]# which gcc34
/usr/local/bin/gcc34
It's true that I installed gcc 3.4 from ports and put a line in
/etc/make.conf: CC=gcc34 . However, it's on the path for both my user
and for root; it seems weird that the makefile would lose track of it.
Makefile doesn't lose it, it just redefines PATH; try using full path to
gcc binary in /etc/make.conf:
CC=/usr/local/bin/gcc34
Yuri
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"