try to install something from source : command not working

Hello,

I try to install Etoille from source because the port is deprecated.
According to this page http://etoileos.com/downloads/installrelease/freebsd I have to do this command # CC=clang CXX=clang++ make.But it fails with this error message
Code:
 CC  command not found

How to solve this?

I contacted the port maintainer of etoille but I have not get a answer yet.

Regards,

Roelof Wobben
 
Switch to a Bourne-shell (ie. /bin/sh) so the syntax is valid. In csh(1) (the default shell of root) doesn't accept the syntax you're trying to use.
 
In [t]csh use: $ env CC=clang CXX=clang++ make
 
Back
Top