]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/patches/README.TXT
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / patches / README.TXT
1 This is a set of individual patches, which contain all the customizations to
2 llvm/clang currently in the FreeBSD base system.  These can be applied in
3 alphabetical order to a pristine llvm/clang 3.4 release source tree, for example
4 by doing:
5
6 svn co https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_34/final llvm-3.4-final 
7 svn co https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_34/final llvm-3.4-final/tools/clang
8 cd llvm-3.4-final
9 for p in /usr/src/contrib/llvm/patches/patch-*.diff; do
10         patch -p0 -f -F0 -E -i $p -s || break
11 done
12
13 A number of these consist of hand-written modifications, specifically for
14 FreeBSD, while most others are cherry pickings off the llvm and clang trunks.
15 When a new version of llvm/clang is eventually imported, those latter ones will
16 largely disappear.