We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f71660a commit 45e7527Copy full SHA for 45e7527
crates/symbol-check/src/main.rs
@@ -142,8 +142,9 @@ fn verify_no_duplicates(path: impl AsRef<Path>) {
142
return;
143
}
144
145
- // Ignore literal constants and string literals on Windows
146
- let win_allowed_dup_pfx = ["__real@", "__xmm@", "??_C@_"];
+ // Windows has symbols for literal numeric constants, string literals, and MinGW pseudo-
+ // relocations. These are allowed to have repeated definitions.
147
+ let win_allowed_dup_pfx = ["__real@", "__xmm@", "??_C@_", ".refptr"];
148
if win_allowed_dup_pfx
149
.iter()
150
.any(|pfx| info.name.starts_with(pfx))
0 commit comments