Skip to content

Commit ce4b4bc

Browse files
committed
Add cygwin support
1 parent 9d2c34e commit ce4b4bc

File tree

4 files changed

+23
-6
lines changed

4 files changed

+23
-6
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cpp_demangle = { default-features = false, version = "0.4.0", optional = true, f
3838
"alloc",
3939
] }
4040

41-
[target.'cfg(windows)'.dependencies]
41+
[target.'cfg(any(windows, target_os = "cygwin"))'.dependencies]
4242
windows-targets = "0.52.6"
4343

4444
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,5 +247,5 @@ mod lock {
247247
))]
248248
mod dbghelp;
249249
// Auto-generated by windows-bindgen/riddle
250-
#[cfg(windows)]
250+
#[cfg(any(windows, target_os = "cygwin"))]
251251
mod windows_sys;

src/symbolize/gimli.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ fn mmap(path: &Path) -> Option<Mmap> {
193193
}
194194

195195
cfg_if::cfg_if! {
196-
if #[cfg(windows)] {
196+
if #[cfg(any(windows, target_os = "cygwin"))] {
197197
mod coff;
198198
use self::coff::{handle_split_dwarf, Object};
199199
} else if #[cfg(any(target_vendor = "apple"))] {
@@ -209,7 +209,7 @@ cfg_if::cfg_if! {
209209
}
210210

211211
cfg_if::cfg_if! {
212-
if #[cfg(windows)] {
212+
if #[cfg(any(windows, target_os = "cygwin"))] {
213213
mod libs_windows;
214214
use libs_windows::native_libraries;
215215
} else if #[cfg(target_vendor = "apple")] {

src/symbolize/gimli/libs_windows.rs

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use super::super::super::windows_sys::*;
22
use super::mystd::ffi::OsString;
3-
use super::mystd::os::windows::prelude::*;
43
use super::{coff, mmap, Library, LibrarySegment};
54
use alloc::vec;
65
use alloc::vec::Vec;
@@ -49,7 +48,25 @@ unsafe fn load_library(me: &MODULEENTRY32W) -> Option<Library> {
4948
.iter()
5049
.position(|i| *i == 0)
5150
.unwrap_or(me.szExePath.len());
52-
let name = OsString::from_wide(&me.szExePath[..pos]);
51+
let mut name_buffer = vec![0_u8; pos * 4];
52+
let name_len = unsafe {
53+
WideCharToMultiByte(
54+
CP_UTF8,
55+
0,
56+
me.szExePath.as_ptr(),
57+
pos as i32,
58+
name_buffer.as_mut_ptr(),
59+
name_buffer.len() as i32,
60+
core::ptr::null_mut(),
61+
core::ptr::null_mut(),
62+
) as usize
63+
};
64+
if name_len == 0 || name_len > name_buffer.len() {
65+
// This can't happen.
66+
return None;
67+
}
68+
unsafe { name_buffer.set_len(name_len) };
69+
let name = unsafe { OsString::from_encoded_bytes_unchecked(name_buffer) };
5370

5471
// MinGW libraries currently don't support ASLR
5572
// (rust-lang/rust#16514), but DLLs can still be relocated around in

0 commit comments

Comments
 (0)