freebsd-dev/contrib/llvm/patches
2015-12-04 17:23:19 +00:00
..
patch-01-clang-vendor-suffix.diff Drop llvm/clang patches which are no longer necessary. 2015-05-30 15:36:23 +00:00
patch-02-add-CC-aliases.diff Drop llvm/clang patches which are no longer necessary. 2015-05-30 15:36:23 +00:00
patch-03-enable-armv6-clrex.diff Drop llvm/clang patches which are no longer necessary. 2015-05-30 15:36:23 +00:00
patch-04-clang-add-mips-triples.diff Drop llvm/clang patches which are no longer necessary. 2015-05-30 15:36:23 +00:00
patch-05-clang-r244063-missing-atomic-libcall.diff Add clang patch corresponding to r288127. 2015-09-22 20:42:14 +00:00
patch-06-llvm-r248439-fdiv-hoisting.diff Add llvm patch corresponding to r288195. 2015-09-25 18:21:48 +00:00
patch-07-undo-llvm-r240144-iostream-sigbus.diff Add llvm patch corresponding to r289072. 2015-10-09 21:00:04 +00:00
patch-08-llvm-r250085-fix-avx-crash.diff Add llvm patch corresponding to r289221. 2015-10-13 16:25:02 +00:00
patch-09-clang-r250657-openmp.diff Add clang patch corresponding to r289523. 2015-10-18 17:14:45 +00:00
patch-10-clang-cc1as-dwarf2.diff Add clang patch corresponding to r291701. 2015-12-04 17:23:19 +00:00
README.TXT Drop llvm/clang patches which are no longer necessary. 2015-05-30 15:36:23 +00:00

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.7.0 source tree, for example by
doing:

svn co https://llvm.org/svn/llvm-project/llvm/trunk llvm-3.7.0 
svn co https://llvm.org/svn/llvm-project/cfe/trunk llvm-3.7.0/tools/clang
cd llvm-3.7.0
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.