From 5acdae1f9a772e16850b0ee9648d79a7c3becf23 Mon Sep 17 00:00:00 2001 From: Shilei Tian Date: Wed, 6 Jan 2021 17:07:17 -0500 Subject: [PATCH] [OpenMP] Fixed an issue that wrong LLVM headers might be included when building libomptarget Wrong LLVM headers might be included if we don't set `include_directories` to a right place. This will cause a compilation error if LLVM is installed in system directories. Reviewed By: jdoerfert Differential Revision: https://reviews.llvm.org/D93737 --- openmp/libomptarget/src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openmp/libomptarget/src/CMakeLists.txt b/openmp/libomptarget/src/CMakeLists.txt index 35ff4ed549c..3fc7278f7fb 100644 --- a/openmp/libomptarget/src/CMakeLists.txt +++ b/openmp/libomptarget/src/CMakeLists.txt @@ -21,6 +21,8 @@ set(LIBOMPTARGET_SRC_FILES ${CMAKE_CURRENT_SOURCE_DIR}/omptarget.cpp ) +include_directories(${LIBOMPTARGET_LLVM_MAIN_INCLUDE_DIR}) + # Build libomptarget library with libdl dependency. Add LLVMSupport # dependency if building in-tree with profiling enabled. if(OPENMP_STANDALONE_BUILD OR (NOT OPENMP_ENABLE_LIBOMPTARGET_PROFILING)) -- 2.11.0