[PATCH] D88110: [flang][driver] Add missing dependency in CMake files

Andrzej Warzynski via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 24 01:33:06 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG2f90e01a963a: [flang][driver] Add missing dependency in CMake files (authored by awarzynski).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D88110

Files:
  flang/lib/Frontend/CMakeLists.txt
  flang/lib/FrontendTool/CMakeLists.txt


Index: flang/lib/FrontendTool/CMakeLists.txt
===================================================================
--- flang/lib/FrontendTool/CMakeLists.txt
+++ flang/lib/FrontendTool/CMakeLists.txt
@@ -1,6 +1,9 @@
 add_flang_library(flangFrontendTool
   ExecuteCompilerInvocation.cpp
 
+  DEPENDS
+  clangBasic
+
   LINK_LIBS
   clangBasic
   clangDriver
Index: flang/lib/Frontend/CMakeLists.txt
===================================================================
--- flang/lib/Frontend/CMakeLists.txt
+++ flang/lib/Frontend/CMakeLists.txt
@@ -3,6 +3,9 @@
   CompilerInvocation.cpp
   FrontendOptions.cpp
 
+  DEPENDS
+  clangBasic
+
   LINK_LIBS
   clangBasic
   clangDriver


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88110.293969.patch
Type: text/x-patch
Size: 675 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200924/3a6f0386/attachment.bin>


More information about the llvm-commits mailing list