fix: thread_win on prefixed build
This commit is contained in:
parent
1012a36c94
commit
6e122e7632
|
|
@ -73,6 +73,7 @@ pub fn prefix_symbols(config: &Config) {
|
|||
})
|
||||
.filter_map(|l| l.split_whitespace().nth(2).map(|s| s.to_string()))
|
||||
.filter(|l| !l.starts_with("_"))
|
||||
.filter(|l| l != "p_thread_callback_boringssl") // `/ALTERNATENAME` didn't work for this so skip it
|
||||
.map(|l| format!("{l} {PREFIX}_{l}"))
|
||||
.collect();
|
||||
redefine_syms.sort();
|
||||
|
|
|
|||
Loading…
Reference in New Issue