Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 8b87eba

Browse files
committed
ci(llvm): prevent linking in polly on linux
1 parent 1cbac84 commit 8b87eba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/llvm/build.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ fn main() {
189189
continue;
190190
};
191191

192-
// Don't need or want this library, but LLVM's CMake build system
192+
// Don't need or want these libraries, but LLVM's CMake build system
193193
// doesn't provide a way to disable it, so filter it here even though we
194-
// may or may not have built it. We don't reference anything from this
195-
// library and it otherwise may just pull in extra dependencies on
194+
// may or may not have built it. We don't reference anything from these
195+
// libraries and it otherwise may just pull in extra dependencies on
196196
// libedit which we don't want
197-
if name == "LLVMLineEditor" {
197+
if name == "LLVMLineEditor" || name == "Polly" || name == "PollyISL" {
198198
continue;
199199
}
200200

0 commit comments

Comments
 (0)