diff options
author | Shoaib Meenai <smeenai@fb.com> | 2019-03-04 21:19:53 +0000 |
---|---|---|
committer | Shoaib Meenai <smeenai@fb.com> | 2019-03-04 21:19:53 +0000 |
commit | 5be71faf4bfd6b80555be6e96e60b63dea5e245e (patch) | |
tree | 931ad7c1d2bbef6ae01209f42f728b4d2bc5424f /clang/docs | |
parent | 0632e12f8927a13345cec0f823212fbd881fe889 (diff) | |
download | bcm5719-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 'clang/docs')
-rw-r--r-- | clang/docs/LibTooling.rst | 4 | ||||
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 13 |
2 files changed, 14 insertions, 3 deletions
diff --git a/clang/docs/LibTooling.rst b/clang/docs/LibTooling.rst index 498baa2c46c..2aaa508a136 100644 --- a/clang/docs/LibTooling.rst +++ b/clang/docs/LibTooling.rst @@ -187,8 +187,8 @@ Clang tools need their builtin headers and search for them the same way Clang does. Thus, the default location to look for builtin headers is in a path ``$(dirname /path/to/tool)/../lib/clang/3.3/include`` relative to the tool binary. This works out-of-the-box for tools running from llvm's toplevel -binary directory after building clang-headers, or if the tool is running from -the binary directory of a clang install next to the clang binary. +binary directory after building clang-resource-headers, or if the tool is +running from the binary directory of a clang install next to the clang binary. Tips: if your tool fails to find ``stddef.h`` or similar headers, call the tool with ``-v`` and look at the search paths it looks through. diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 578dc1079b3..1ca6218ac64 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -131,7 +131,7 @@ ABI Changes in Clang - ... OpenMP Support in Clang ----------------------------------- +----------------------- - Added emission of the debug information for NVPTX target devices. @@ -147,6 +147,17 @@ These are major API changes that have happened since the 8.0.0 release of Clang. If upgrading an external codebase that uses Clang as a library, this section should help get you past the largest hurdles of upgrading. +Build System Changes +-------------------- + +These are major changes to the build system that have happened since the 8.0.0 +release of Clang. Users of the build system should adjust accordingly. + +- In 8.0.0 and below, the install-clang-headers target would install clang's + resource directory headers. This installation is now performed by the + install-clang-resource-headers target. Users of the old install-clang-headers + target should switch to the new install-clang-resource-headers target. + - ... AST Matchers |