aboutsummaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
*---------. Merge llvm, clang, compiler-rt, libc++, lld and lldb release_40 branchDimitry Andric2017-02-012-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r293807, and update build glue. Notes: svn path=/projects/clang400-import/; revision=313067
| | | | | | * Vendor import of llvm release_40 branch r293807:vendor/llvm/llvm-release_40-r293807Dimitry Andric2017-02-0123-54/+410
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/llvm/branches/release_40@293807 Notes: svn path=/vendor/llvm/dist/; revision=313056 svn path=/vendor/llvm/llvm-release_40-r293807/; revision=313057; tag=vendor/llvm/llvm-release_40-r293807
| * | | | | | Vendor import of clang release_40 branch r293807:vendor/clang/clang-release_40-r293807Dimitry Andric2017-02-019-224/+149
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/cfe/branches/release_40@293807 Notes: svn path=/vendor/clang/dist/; revision=313058 svn path=/vendor/clang/clang-release_40-r293807/; revision=313059; tag=vendor/clang/clang-release_40-r293807
* | | | | | | Merge ^/head r312968 through r313054.Dimitry Andric2017-02-0145-621/+727
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang400-import/; revision=313055
| * | | | | | | Expose symbols in lib/libclang_rt/profile to fix --coverageEnji Cooper2017-01-311-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The symbols currently hidden in libprofile_rt are needed for linking with `clang --coverage` to add coverage counters at link time and produce coverage numbers at runtime. In collaboration with: dim MFC after: 1 month Sponsored by: Dell EMC Isilon Differential Revision: D9168 Notes: svn path=/head/; revision=313009
| * | | | | | | MFV 312999:Pedro F. Giffuni2017-01-309-43/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update libedit 2016-03-21 Minor cleanups plus some license syncing. Obtained from: NetBSD X-MFC with: r312997 Notes: svn path=/head/; revision=313002
| * | | | | | | MFV r312996:Pedro F. Giffuni2017-01-3042-595/+684
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-import libedit 2016-02-27 This reverts r296435: the issues related to lldb and this update appear to have been identified (in lldb). Obtained from: NetBSD Reported by: emaste MFC after: 3 weeks Notes: svn path=/head/; revision=312997
| * | | | | | | Extend LD_UTRACE by also generating utrace(2) log events for runtime linkerPeter Jeremy2017-01-301-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | errors. Reviewed by: kib, jhb Approved by: jhb(mentor) MFC after: 1 week Differential Revision: D9347 Notes: svn path=/head/; revision=312984
* | | | | | | | Merge ^/head r312894 through r312967.Dimitry Andric2017-01-294-16/+10
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang400-import/; revision=312968
| * | | | | | | Fix typo in lib/MakefileEnji Cooper2017-01-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The SUBDIR_DEPEND variable should be for librpcsec_gss, not liblibrpc_gss MFC after: 1 week PR: 216409 Reported by: mail@fbsd.e4m.org Notes: svn path=/head/; revision=312937
| * | | | | | | Make use of clang nullability attributes.Pedro F. Giffuni2017-01-281-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace uses of the GCC __nonnull__ attribute with the clang nullability qualifiers. The replacement should be transparent for clang developers as the new qualifiers will produce the same warnings and will be useful for static checkers but will not cause aggressive optimizations. GCC will not produce such warnings and developers will have to use upgraded GCC ports built with the system headers from r312538. Hinted by: Apple's Libc-1158.20.4, Bionic libc MFC after: 11.1 Release Differential Revision: https://reviews.freebsd.org/D9004 Notes: svn path=/head/; revision=312934
| * | | | | | | Remove pc98 support completely.Yoshihiro Takahashi2017-01-282-10/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I thank all developers and contributors for pc98. Relnotes: yes Notes: svn path=/head/; revision=312910
| | | | | | | |
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
*---------. \ \ \ \ \ \ \ Merge llvm, clang, compiler-rt, libc++, lld and lldb release_40 branchDimitry Andric2017-01-292-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / / / | |/| | | | | | / / / / / | | | |_|_|_|_|/ / / / / | | |/| | | | | / / / / | | | | |_|_|_|/ / / / | | | |/| | | | / / / | | | | | |_|_|/ / / | | | | |/| | | / / | | | | | | |_|/ / | | | | | |/| | / | | | | | | | |/ | | | | | | |/| r293443, and update build glue. Notes: svn path=/projects/clang400-import/; revision=312967
| | | | | | * | Vendor import of llvm release_40 branch r293443:vendor/llvm/llvm-release_40-r293443Dimitry Andric2017-01-2926-195/+296
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/llvm/branches/release_40@293443 Notes: svn path=/vendor/llvm/dist/; revision=312956 svn path=/vendor/llvm/llvm-release_40-r293443/; revision=312957; tag=vendor/llvm/llvm-release_40-r293443
| | * | | | | | Vendor import of compiler-rt release_40 branch r293443:vendor/compiler-rt/compiler-rt-release_40-r293807vendor/compiler-rt/compiler-rt-release_40-r293443Dimitry Andric2017-01-292-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/compiler-rt/branches/release_40@293443 Notes: svn path=/vendor/compiler-rt/dist/; revision=312960 svn path=/vendor/compiler-rt/compiler-rt-release_40-r293807/; revision=313060; tag=vendor/compiler-rt/compiler-rt-release_40-r293807
| * | | | | | | Vendor import of clang release_40 branch r293443:vendor/clang/clang-release_40-r293443Dimitry Andric2017-01-294-5/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/cfe/branches/release_40@293443 Notes: svn path=/vendor/clang/dist/; revision=312958 svn path=/vendor/clang/clang-release_40-r293443/; revision=312959; tag=vendor/clang/clang-release_40-r293443
* | | | | | | | Add -mlong-calls also to LLVM's STATIC_CFLAGS on ARMEd Maste2017-01-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -mlong-calls was set only in STATIC_CXXFLAGS, but there are some .c source files in LLVM which also need -mlong-calls. Unfortunately this is not sufficient to fix linking lldb on ARM, because LLVM-generated calls to __aeabi_read_tp do not honour the -mlong-calls flag. See LLVM PR31769 for details. Reviewed by: dim Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D9348 Notes: svn path=/projects/clang400-import/; revision=312898
* | | | | | | | Additional LD_AS_LLD -> LD_IS_LLD missed in r312894/r312895Ed Maste2017-01-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang400-import/; revision=312896
* | | | | | | | Merge ^/head r312720 through r312893.Dimitry Andric2017-01-271-3/+0
|\ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ | |/| | | | | | | | | | | | | | Notes: svn path=/projects/clang400-import/; revision=312894
| * | | | | | | libthr: coalesce repeated #if blocksEd Maste2017-01-251-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=312774
* | | | | | | | Also apply WITH_LLD_AS_LD to build toolsEd Maste2017-01-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously WITH_LLD_AS_LD installed LLD as /usr/bin/ld in the target system, but still used the GNU BFD ld to link the binaries in that target. LLD 4.0.0 can link the FreeBSD/amd64 world and kernel so use LLD as the build-time linker as well when the knob is set. Reviewed by: dim Relnotes: Yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D9226 Notes: svn path=/projects/clang400-import/; revision=312781
* | | | | | | | Merge ^/head r312624 through r312719.Dimitry Andric2017-01-241-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang400-import/; revision=312720
| * | | | | | | Fix the error value we write in cerror. __error returns an int *, howeverAndrew Turner2017-01-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we were writing a 64 bit value meaning the 32 bits after this would be trashed. MFC after: 3 days Sponsored by: DARPA, AFRL Notes: svn path=/head/; revision=312703
| | | | | | | |
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
*---------. \ \ \ \ \ \ \ Merge llvm, clang, compiler-rt, libc++, lld and lldb release_40 branchDimitry Andric2017-01-242-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / / / | |/| | | | | | / / / / / | | | |_|_|_|_|/ / / / / | | |/| | | | | / / / / | | | | |_|_|_|/ / / / | | | |/| | | | / / / | | | | | |_|_|/ / / | | | | |/| | | / / | | | | | | |_|/ / | | | | | |/| | / | | | | | | | |/ | | | | | | |/| r292951, and update build glue. Notes: svn path=/projects/clang400-import/; revision=312719
| | | | | | * | Vendor import of llvm release_40 branch r292951:vendor/llvm/llvm-release_40-r292951Dimitry Andric2017-01-249-345/+288
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/llvm/branches/release_40@292951 Notes: svn path=/vendor/llvm/dist/; revision=312704 svn path=/vendor/llvm/llvm-release_40-r292951/; revision=312705; tag=vendor/llvm/llvm-release_40-r292951
| | * | | | | | Vendor import of compiler-rt release_40 branch r292009:vendor/compiler-rt/compiler-rt-release_40-r292951vendor/compiler-rt/compiler-rt-release_40-r292732vendor/compiler-rt/compiler-rt-release_40-r292009Dimitry Andric2017-01-1463-169/+494
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/compiler-rt/branches/release_40@292009 Notes: svn path=/vendor/compiler-rt/dist/; revision=312177 svn path=/vendor/compiler-rt/compiler-rt-release_40-r292951/; revision=312708; tag=vendor/compiler-rt/compiler-rt-release_40-r292951
| | * | | | | | Vendor import of compiler-rt trunk r291476:vendor/compiler-rt/compiler-rt-trunk-r291476Dimitry Andric2017-01-0940-83/+408
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/compiler-rt/trunk@291476 Notes: svn path=/vendor/compiler-rt/dist/; revision=311822 svn path=/vendor/compiler-rt/compiler-rt-trunk-r291476/; revision=311823; tag=vendor/compiler-rt/compiler-rt-trunk-r291476
| | * | | | | | Vendor import of compiler-rt trunk r291274:vendor/compiler-rt/compiler-rt-trunk-r291274Dimitry Andric2017-01-0624-109/+484
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/compiler-rt/trunk@291274 Notes: svn path=/vendor/compiler-rt/dist/; revision=311536 svn path=/vendor/compiler-rt/compiler-rt-trunk-r291274/; revision=311537; tag=vendor/compiler-rt/compiler-rt-trunk-r291274
| | * | | | | | Vendor import of compiler-rt trunk r291012:vendor/compiler-rt/compiler-rt-trunk-r291015vendor/compiler-rt/compiler-rt-trunk-r291012Dimitry Andric2017-01-041-6/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/compiler-rt/trunk@291012 Notes: svn path=/vendor/compiler-rt/dist/; revision=311319 svn path=/vendor/compiler-rt/compiler-rt-trunk-r291012/dist/; revision=311332; tag=vendor/compiler-rt/compiler-rt-trunk-r291015
| | * | | | | | Vendor import of compiler-rt trunk r290819:vendor/compiler-rt/compiler-rt-trunk-r290819Dimitry Andric2017-01-02276-4363/+12510
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/compiler-rt/trunk@290819 Notes: svn path=/vendor/compiler-rt/dist/; revision=311120 svn path=/vendor/compiler-rt/compiler-rt-trunk-r290819/; revision=311121; tag=vendor/compiler-rt/compiler-rt-trunk-r290819
| * | | | | | | Vendor import of clang release_40 branch r292951:vendor/clang/clang-release_40-r292951Dimitry Andric2017-01-245-9/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/cfe/branches/release_40@292951 Notes: svn path=/vendor/clang/dist/; revision=312706 svn path=/vendor/clang/clang-release_40-r292951/; revision=312707; tag=vendor/clang/clang-release_40-r292951
| | | | | | | |
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
| \ \ \ \ \ \ \
*-----. \ \ \ \ \ \ \ Merge llvm, clang, lld and lldb release_40 branch 292732, and updateDimitry Andric2017-01-222-2/+2
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / | |/| | | | | / / / / | | | |_|_|_|/ / / / | | |/| | | | / / / | | | | |_|_|/ / / | | | |/| | | / / | | | | | |_|/ / | | | | |/| | | build glue. Notes: svn path=/projects/clang400-import/; revision=312639
| | | | * | | | Vendor import of llvm release_40 branch r292732:vendor/llvm/llvm-release_40-r292732Dimitry Andric2017-01-229-95/+165
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/llvm/branches/release_40@292732 Notes: svn path=/vendor/llvm/dist/; revision=312625 svn path=/vendor/llvm/llvm-release_40-r292732/; revision=312626; tag=vendor/llvm/llvm-release_40-r292732
| | * | | | | | Vendor import of lld trunk r291476:vendor/lld/lld-trunk-r291476Dimitry Andric2017-01-097-25/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/lld/trunk@291476 Notes: svn path=/vendor/lld/dist/; revision=311826 svn path=/vendor/lld/lld-trunk-r291476/; revision=311827; tag=vendor/lld/lld-trunk-r291476
| | * | | | | | Vendor import of lld trunk r291274:vendor/lld/lld-trunk-r291274Dimitry Andric2017-01-061-55/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/lld/trunk@291274 Notes: svn path=/vendor/lld/dist/; revision=311540 svn path=/vendor/lld/lld-trunk-r291274/; revision=311541; tag=vendor/lld/lld-trunk-r291274
| | * | | | | | Vendor import of lld trunk r290819:vendor/lld/lld-trunk-r290819Dimitry Andric2017-01-0236-361/+1102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/lld/trunk@290819 Notes: svn path=/vendor/lld/dist/; revision=311125 svn path=/vendor/lld/lld-trunk-r290819/; revision=311126; tag=vendor/lld/lld-trunk-r290819
| * | | | | | | Vendor import of clang release_40 branch r292732:vendor/clang/clang-release_40-r292732Dimitry Andric2017-01-225-44/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/cfe/branches/release_40@292732 Notes: svn path=/vendor/clang/dist/; revision=312627 svn path=/vendor/clang/clang-release_40-r292732/; revision=312628; tag=vendor/clang/clang-release_40-r292732
| * | | | | | | Vendor import of clang release_40 branch r292009:vendor/clang/clang-release_40-r292009Dimitry Andric2017-01-1466-382/+1016
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://llvm.org/svn/llvm-project/cfe/branches/release_40@292009 Notes: svn path=/vendor/clang/dist/; revision=312175 svn path=/vendor/clang/clang-release_40-r292009/; revision=312176; tag=vendor/clang/clang-release_40-r292009
* | | | | | | | Merge ^/head r312309 through r312623.Dimitry Andric2017-01-22103-187/+201
|\ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ | |/| | | | | | | | | | | | | | Notes: svn path=/projects/clang400-import/; revision=312624
| * | | | | | | Improve wording around SO_TS_CLOCK documentation.Maxim Sobolev2017-01-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: wblock Differential Revision: https://reviews.freebsd.org/D9171 Notes: svn path=/head/; revision=312554
| * | | | | | | Mention sendfile(2) by popular demand.Warren Block2017-01-201-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: alc, kib MFC after: 1 week Sponsored by: iXsystems Differential Revision: https://reviews.freebsd.org/D9259 Notes: svn path=/head/; revision=312547
| * | | | | | | Use .CURDIR:H instead of .CURDIR to simplify pathing in output, etcEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312512
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312511
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312510
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312509
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312508
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312507
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-202-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312506
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312505
| * | | | | | | Use SRCTOP-relative paths to other directories instead of .CURDIR-relative onesEnji Cooper2017-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=312504