[compiler-rt] r351479 - xray: Add missing header to list of installed headers.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 17 13:11:49 PST 2019


Author: pcc
Date: Thu Jan 17 13:11:49 2019
New Revision: 351479

URL: http://llvm.org/viewvc/llvm-project?rev=351479&view=rev
Log:
xray: Add missing header to list of installed headers.

Spotted by gn's llvm/utils/gn/build/sync_source_lists_from_cmake.py script.

Differential Revision: https://reviews.llvm.org/D56797

Modified:
    compiler-rt/trunk/include/CMakeLists.txt

Modified: compiler-rt/trunk/include/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/include/CMakeLists.txt?rev=351479&r1=351478&r2=351479&view=diff
==============================================================================
--- compiler-rt/trunk/include/CMakeLists.txt (original)
+++ compiler-rt/trunk/include/CMakeLists.txt Thu Jan 17 13:11:49 2019
@@ -21,6 +21,7 @@ if (COMPILER_RT_BUILD_XRAY)
   set(XRAY_HEADERS
     xray/xray_interface.h
     xray/xray_log_interface.h
+    xray/xray_records.h
     )
 endif(COMPILER_RT_BUILD_XRAY)
 




More information about the llvm-commits mailing list