2011/12/12 Florin Pop <[email protected]> > Hello, > > I've been trying to get Etoile up and running on FreeBSD 9 RC3 for some time > now with no success. Maybe you guys can help a newbie to this project. > > 1. With David's tutorial > (http://etoileos.com/downloads/installtrunk/freebsd/) I get stuck at the > first step: > > We're going to build with the simple Makefile, rather than with the > GNUmakefile. This will use the system C/C++ compilers, which are still > gcc/g++ on FreeBSD 9, so we need to specify clang. > $ CC=clang CXX=clang++ make > Returns: > > no target to make > > if i try: > > $ CC=clang CXX=clang++ make -f Makefile.in
Not sure where Makefile.in comes from - it's not present in libobjc2. If you are using a C shell instead of a Bourne / POSIX shell, then you will need to set environment variables differently. I believe that this should work: $ setenv CC=clang $ setenv CXX=clang++ > 2. FreeBSD's GNUStep port causes me to run into the problem discussed here > http://forums.freebsd.org/showthread.php?p=156343 I've CC'd the maintainer of the GNUstep ports on FreeBSD - hopefully he can shed some light on the problems there. David -- This email complies with ISO 3103 _______________________________________________ Etoile-discuss mailing list [email protected] https://mail.gna.org/listinfo/etoile-discuss
