1 Apr
2025
1 Apr
'25
5:53 p.m.
Jinoh Kang (@iamahuman) commented about tools/wine/wine.rs:
+ }; + + let platform = if cfg!(target_os = "macos") { + "apple" + } else if cfg!(target_os = "android") { + "android" + } else if cfg!(target_os = "linux") { + "linux" + } else if cfg!(target_os = "freebsd") { + "freebsd" + } else if cfg!(target_os = "solaris") { + "solaris" + } else if cfg!(target_os = "windows") { + "mingw" + } else { + "unspecified" Missing netbsd.
Also, where is Windows Phone and POSReady? An oversight? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7717#note_99610