We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5930de7 commit a6b1478Copy full SHA for a6b1478
src/symbolize/gimli.rs
@@ -32,11 +32,20 @@ cfg_if::cfg_if! {
32
if #[cfg(windows)] {
33
#[path = "gimli/mmap_windows.rs"]
34
mod mmap;
35
- } else if #[cfg(target_env = "devkita64")] {
36
- #[path = "gimli/mmap_fake.rs"]
+ } else if #[cfg(any(
+ target_os = "android",
37
+ target_os = "freebsd",
38
+ target_os = "fuchsia",
39
+ target_os = "ios",
40
+ target_os = "linux",
41
+ target_os = "macos",
42
+ target_os = "openbsd",
43
+ target_os = "solaris",
44
+ ))] {
45
+ #[path = "gimli/mmap_unix.rs"]
46
47
} else {
- #[path = "gimli/mmap_unix.rs"]
48
+ #[path = "gimli/mmap_fake.rs"]
49
50
}
51
0 commit comments