summaryrefslogtreecommitdiffstats
path: root/lldb/cmake/modules
diff options
context:
space:
mode:
authorShoaib Meenai <smeenai@fb.com>2019-03-04 21:19:53 +0000
committerShoaib Meenai <smeenai@fb.com>2019-03-04 21:19:53 +0000
commit5be71faf4bfd6b80555be6e96e60b63dea5e245e (patch)
tree931ad7c1d2bbef6ae01209f42f728b4d2bc5424f /lldb/cmake/modules
parent0632e12f8927a13345cec0f823212fbd881fe889 (diff)
downloadbcm5719-llvm-5be71faf4bfd6b80555be6e96e60b63dea5e245e.tar.gz
bcm5719-llvm-5be71faf4bfd6b80555be6e96e60b63dea5e245e.zip
[build] Rename clang-headers to clang-resource-headers
Summary: The current install-clang-headers target installs clang's resource directory headers. This is different from the install-llvm-headers target, which installs LLVM's API headers. We want to introduce the corresponding target to clang, and the natural name for that new target would be install-clang-headers. Rename the existing target to install-clang-resource-headers to free up the install-clang-headers name for the new target, following the discussion on cfe-dev [1]. I didn't find any bots on zorg referencing install-clang-headers. I'll send out another PSA to cfe-dev to accompany this rename. [1] http://lists.llvm.org/pipermail/cfe-dev/2019-February/061365.html Reviewers: beanz, phosek, tstellar, rnk, dim, serge-sans-paille Subscribers: mgorny, javed.absar, jdoerfert, #sanitizers, openmp-commits, lldb-commits, cfe-commits, llvm-commits Tags: #clang, #sanitizers, #lldb, #openmp, #llvm Differential Revision: https://reviews.llvm.org/D58791 llvm-svn: 355340
Diffstat (limited to 'lldb/cmake/modules')
-rw-r--r--lldb/cmake/modules/LLDBFramework.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/cmake/modules/LLDBFramework.cmake b/lldb/cmake/modules/LLDBFramework.cmake
index 440061ada93..147d3de527f 100644
--- a/lldb/cmake/modules/LLDBFramework.cmake
+++ b/lldb/cmake/modules/LLDBFramework.cmake
@@ -98,10 +98,10 @@ add_custom_command(TARGET lldb-framework-headers POST_BUILD
# Copy vendor-specific headers from clang (without staging).
if(NOT IOS AND NOT LLDB_BUILT_STANDALONE)
- add_dependencies(lldb-framework clang-headers)
+ add_dependencies(lldb-framework clang-resource-headers)
add_custom_command(TARGET lldb-framework POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
- $<TARGET_PROPERTY:clang-headers,RUNTIME_OUTPUT_DIRECTORY>
+ $<TARGET_PROPERTY:clang-resource-headers,RUNTIME_OUTPUT_DIRECTORY>
$<TARGET_FILE_DIR:liblldb>/Resources/Clang/include
COMMENT "LLDB.framework: copy clang vendor-specific headers"
)
OpenPOWER on IntegriCloud