1 Apr
2025
1 Apr
'25
5:53 p.m.
Jinoh Kang (@iamahuman) commented about tools/wine/wine.rs:
+ "/{}/{}", + name, + if is_pe_target(target) { + "windows" + } else { + "unix" + } + ) + } else { + "".to_string() + } +} + +fn is_pe_target(_target: &Target) -> bool { + // Implement platform-specific PE detection logic if needed + false
// What could go wrong?
cfg!(target_os = "windows")
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7717#note_99611