Skip to content

Commit fee681c

Browse files
committed
Ignore win-x86/* files
1 parent 5ac9ff4 commit fee681c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intel-mkl-tool/src/entry.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ impl Library {
209209
if path.is_dir() {
210210
return None;
211211
}
212-
// Skip files under directory for ia32
212+
// Skip files for 32bit system under `ia32*/` and `win-x86`
213213
if path.components().any(|c| {
214214
if let std::path::Component::Normal(c) = c {
215215
if let Some(c) = c.to_str() {
216-
if c.starts_with("ia32") {
216+
if c.starts_with("ia32") || c == "win-x86" {
217217
return true;
218218
}
219219
}

0 commit comments

Comments
 (0)