Date: Mon, 10 Aug 2020 16:55:54 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r364081 - in head/lib/libclang_rt: fuzzer profile xray Message-ID: <202008101655.07AGtsxh031036@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dim Date: Mon Aug 10 16:55:54 2020 New Revision: 364081 URL: https://svnweb.freebsd.org/changeset/base/364081 Log: Follow-up to r358851 (llvm-project 10.0.0-rc3 import), where I added subdirectories for compiler-rt's internal fuzzer, profile and xray headers, but forgot to add installing those headers themselves. MFC after: 3 days Modified: head/lib/libclang_rt/fuzzer/Makefile head/lib/libclang_rt/profile/Makefile head/lib/libclang_rt/xray/Makefile Modified: head/lib/libclang_rt/fuzzer/Makefile ============================================================================== --- head/lib/libclang_rt/fuzzer/Makefile Mon Aug 10 12:28:56 2020 (r364080) +++ head/lib/libclang_rt/fuzzer/Makefile Mon Aug 10 16:55:54 2020 (r364081) @@ -23,4 +23,8 @@ SRCS+= fuzzer/FuzzerUtil.cpp SRCS+= fuzzer/FuzzerUtilLinux.cpp SRCS+= fuzzer/FuzzerUtilPosix.cpp +.PATH: ${CRTSRC}/include/fuzzer +INCSDIR= ${CLANGDIR}/include/fuzzer +INCS+= FuzzedDataProvider.h + .include <bsd.lib.mk> Modified: head/lib/libclang_rt/profile/Makefile ============================================================================== --- head/lib/libclang_rt/profile/Makefile Mon Aug 10 12:28:56 2020 (r364080) +++ head/lib/libclang_rt/profile/Makefile Mon Aug 10 16:55:54 2020 (r364081) @@ -25,4 +25,8 @@ SRCS+= profile/InstrProfilingUtil.c SRCS+= profile/InstrProfilingValue.c SRCS+= profile/InstrProfilingWriter.c +.PATH: ${CRTSRC}/include/profile +INCSDIR= ${CLANGDIR}/include/profile +INCS+= InstrProfData.inc + .include <bsd.lib.mk> Modified: head/lib/libclang_rt/xray/Makefile ============================================================================== --- head/lib/libclang_rt/xray/Makefile Mon Aug 10 12:28:56 2020 (r364080) +++ head/lib/libclang_rt/xray/Makefile Mon Aug 10 16:55:54 2020 (r364081) @@ -41,4 +41,10 @@ SRCS+= xray/xray_trampoline_x86_64.S SRCS+= xray/xray_utils.cpp SRCS+= xray/xray_x86_64.cpp +.PATH: ${CRTSRC}/include/xray +INCSDIR= ${CLANGDIR}/include/xray +INCS+= xray_interface.h +INCS+= xray_log_interface.h +INCS+= xray_records.h + .include <bsd.lib.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008101655.07AGtsxh031036>