Skip to content

Commit c1ac2df

Browse files
committed
Allow building the sysroot with --emit llvm-ir
1 parent 56c5c09 commit c1ac2df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_system/build_sysroot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fn build_clif_sysroot_for_triple(
205205
{
206206
let entry = entry.unwrap();
207207
if let Some(ext) = entry.path().extension() {
208-
if ext == "rmeta" || ext == "d" || ext == "dSYM" {
208+
if ext == "rmeta" || ext == "d" || ext == "dSYM" || ext == "clif" {
209209
continue;
210210
}
211211
} else {

0 commit comments

Comments
 (0)