[libc-commits] [PATCH] D158894: [libc] Add missing ${LIBC_INCLUDE_DIR} to object rule

Petr Hosek via Phabricator via libc-commits libc-commits at lists.llvm.org
Mon Aug 28 22:22:36 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG15b5ac38cf5d: [libc] Add missing ${LIBC_INCLUDE_DIR} to object rule (authored by phosek).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D158894/new/

https://reviews.llvm.org/D158894

Files:
  libc/cmake/modules/LLVMLibCObjectRules.cmake


Index: libc/cmake/modules/LLVMLibCObjectRules.cmake
===================================================================
--- libc/cmake/modules/LLVMLibCObjectRules.cmake
+++ libc/cmake/modules/LLVMLibCObjectRules.cmake
@@ -360,9 +360,8 @@
     target_include_directories(
       ${fq_target_name}
       PRIVATE
-        ${LIBC_BUILD_DIR}/include
         ${LIBC_SOURCE_DIR}
-        ${LIBC_BUILD_DIR}
+        ${LIBC_INCLUDE_DIR}
     )
     target_compile_options(${fq_target_name} PRIVATE ${compile_options})
   endif()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D158894.554182.patch
Type: text/x-patch
Size: 522 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230829/3116d5f7/attachment.bin>


More information about the libc-commits mailing list