Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jul 2014 05:05:21 -0500
From:      Andrew Berg <aberg010@my.hennepintech.edu>
To:        <freebsd-questions@freebsd.org>
Subject:   Re: Switching to newer version of Clang
Message-ID:  <53DA14E1.2020808@my.hennepintech.edu>
In-Reply-To: <CABWFOjsa98r1JvG4nVfiXqAB8epzSrfAaS-c15QogbUY2xiQfw@mail.gmail.com>
References:  <CABWFOjsa98r1JvG4nVfiXqAB8epzSrfAaS-c15QogbUY2xiQfw@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On 2014.07.30 21:01, Brian Wood wrote:
> I did a make install in
> 
> /usr/ports/devel/llvm34
> 
> After it finished
> 
> clang -v
> 
> still says 3.3.  Do I have to reboot or try something
> different?  Thanks.
> 
First, you need to install lang/clang34 (clang depends on llvm, not the other
way around).

You can have multiple compilers (and multiple versions of compilers) installed
at the same time. Anything installed from ports will *never* overwrite anything
in base. You're looking for clang34 (/usr/local/bin/clang34). Similarly, gcc
installed from ports would be the same: gcc 4.7, for example, would be
/usr/local/bin/gcc47. If you want to build ports with an alternate compiler,
you'll need something like this in make.conf:

CC=clang34
CPP=clang-cpp34
CXX=clang++34



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53DA14E1.2020808>