[PATCH] D112238: [gn build] Make 'compiler-rt' depend on include dir
Nico Weber via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 21 18:08:56 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4976be1e955d: [gn build] Make 'compiler-rt' depend on include dir (authored by thakis).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112238/new/
https://reviews.llvm.org/D112238
Files:
llvm/utils/gn/secondary/compiler-rt/BUILD.gn
Index: llvm/utils/gn/secondary/compiler-rt/BUILD.gn
===================================================================
--- llvm/utils/gn/secondary/compiler-rt/BUILD.gn
+++ llvm/utils/gn/secondary/compiler-rt/BUILD.gn
@@ -18,7 +18,9 @@
]
}
group("compiler-rt") {
- deps = []
+ deps = [
+ "//compiler-rt/include($host_toolchain)",
+ ]
foreach(toolchain, supported_toolchains) {
deps += [ "//compiler-rt/lib($toolchain)" ]
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112238.381447.patch
Type: text/x-patch
Size: 445 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211022/64f16621/attachment.bin>
More information about the llvm-commits
mailing list