diff options
author | Heejin Ahn <aheejin@gmail.com> | 2018-07-23 18:58:12 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2018-07-23 18:58:12 +0000 |
commit | e5594011590405a5cdda96ec5e20290b96731a03 (patch) | |
tree | 46e61abc650acd4b38f5eede1cba5be51d3fe5e9 | |
parent | ca975b2f58ae49a2394ae21d344e4ef2ac964608 (diff) | |
download | bcm5719-llvm-e5594011590405a5cdda96ec5e20290b96731a03.tar.gz bcm5719-llvm-e5594011590405a5cdda96ec5e20290b96731a03.zip |
[CMake] Fix the setting of LIBCXX_HEADER_DIR
Reviewers: phosek
Subscribers: mgorny, christof, ldionne, cfe-commits
Differential Revision: https://reviews.llvm.org/D49629
llvm-svn: 337727
-rw-r--r-- | libcxx/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt index 6521ebbe4d3..28e2eb74984 100644 --- a/libcxx/CMakeLists.txt +++ b/libcxx/CMakeLists.txt @@ -378,7 +378,7 @@ endif () set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER}) set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) set(LIBCXX_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) -set(LIBCXX_HEADER_DIR ${LLVM_BINARY_DIR}) +set(LIBCXX_HEADER_DIR ${LIBCXX_BINARY_DIR}) set(LIBCXX_BINARY_INCLUDE_DIR "${LIBCXX_BINARY_DIR}/include/c++build") string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION |