[PATCH] D104311: [clang] Fix a race condition in the build of clangInterpreter

Stella Stamenova via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 15 10:08:48 PDT 2021


stella.stamenova created this revision.
stella.stamenova added a reviewer: v.g.vassilev.
Herald added a subscriber: mgorny.
stella.stamenova requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

The library depends on Attributes.inc, so it has to depend on the intrinsics_gen target


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D104311

Files:
  clang/lib/Interpreter/CMakeLists.txt


Index: clang/lib/Interpreter/CMakeLists.txt
===================================================================
--- clang/lib/Interpreter/CMakeLists.txt
+++ clang/lib/Interpreter/CMakeLists.txt
@@ -12,6 +12,9 @@
   IncrementalParser.cpp
   Interpreter.cpp
 
+  DEPENDS
+  intrinsics_gen
+
   LINK_LIBS
   clangAST
   clangAnalysis


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104311.352173.patch
Type: text/x-patch
Size: 331 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210615/8b778b46/attachment.bin>


More information about the cfe-commits mailing list