Skip to content

Commit

Permalink
Enable Mach-O on iOS in gimli. (#378)
Browse files Browse the repository at this point in the history
* Enable Mach-O on iOS in gimli.

* Enable Mach-O on tvOS and watchOS in gimli.
  • Loading branch information
cutsoy authored Oct 22, 2020
1 parent a6dd47b commit 8b8ea53
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/symbolize/gimli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,12 @@ cfg_if::cfg_if! {
}],
})
}
} else if #[cfg(target_os = "macos")] {
} else if #[cfg(any(
target_os = "macos",
target_os = "ios",
target_os = "tvos",
target_os = "watchos",
))] {
// macOS uses the Mach-O file format and uses DYLD-specific APIs to
// load a list of native libraries that are part of the appplication.

Expand Down

0 comments on commit 8b8ea53

Please sign in to comment.