If I want to install a particular version of llvm+clang, for instance 3.8.1
I see files like:
http://llvm.org/releases/3.8.1/llvm-3.8.1.src.tar.xz
http://llvm.org/releases/3.8.1/cfe-3.8.1.src.tar.xz
listed here for download: http://llvm.org/releases/download.html
but how do I untar/combine these so that I can build them?
The tar structure seems a bit odd, like it has files like this:
cfe-3.8.1.src/lib/Sema/SemaAttr.cpp
(cfe-3.8.1.src is its root path? where should these files end up?)
This questions notes how to do it using svn: svn - How do I download a specific release of llvm,clang
Whereas I am trying to figure out using .tar style files here.