9cac79b378
only release, no new features have been added. Please note that this version requires C++11 support to build; see UPDATING for more information. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.5.1/docs/ReleaseNotes.html> <http://llvm.org/releases/3.5.1/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month X-MFC-With: 276479
17 lines
801 B
Plaintext
17 lines
801 B
Plaintext
This is a set of individual patches, which contain all the customizations to
|
|
llvm/clang currently in the FreeBSD base system. These can be applied in
|
|
alphabetical order to a pristine llvm/clang 3.5.1 release source tree, for
|
|
example by doing:
|
|
|
|
svn co https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_351/final llvm-3.5.1-final
|
|
svn co https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_351/final llvm-3.5.1-final/tools/clang
|
|
cd llvm-3.5.1-final
|
|
for p in /usr/src/contrib/llvm/patches/patch-*.diff; do
|
|
patch -p0 -f -F0 -E -i $p -s || break
|
|
done
|
|
|
|
A number of these consist of hand-written modifications, specifically for
|
|
FreeBSD, while most others are cherry pickings off the llvm and clang trunks.
|
|
When a new version of llvm/clang is eventually imported, those latter ones will
|
|
largely disappear.
|