1 Apr
2025
1 Apr
'25
5:53 p.m.
Jinoh Kang (@iamahuman) commented about tools/wine/wine.rs:
+ } + } + + for path in winedllpath.split(':') { + let full_path1 = format!("{}{}{}/ntdll.so", path, arch_dir, ""); + if let Ok(lib) = Library::new(&full_path1) { + return lib; + } + let full_path2 = format!("{}/ntdll.so", path); + if let Ok(lib) = Library::new(&full_path2) { + return lib; + } + } + } + + eprintln!("wine: could not load ntdll.so");
eprintln!("wine-rs: could not load ntdll.so");
To signify the giant step forward -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7717#note_99617