Name Date Size #Lines LOC

..--

README.TXTHD10-Jan-2016741 1714

patch-01-clang-vendor-suffix.diffHD10-Jan-2016836 2318

patch-03-enable-armv6-clrex.diffHD10-Jan-2016667 2115

patch-04-clang-add-mips-triples.diffHD10-Jan-20161.1 KiB3428

patch-05-clang-r244063-missing-atomic-libcall.diffHD10-Jan-20169.3 KiB230218

patch-06-llvm-r248439-fdiv-hoisting.diffHD10-Jan-20163.1 KiB8472

patch-07-undo-llvm-r240144-iostream-sigbus.diffHD10-Jan-20161.8 KiB5144

patch-08-clang-cc1as-dwarf2.diffHD10-Jan-2016783 2218

README.TXT

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