Skip to content

Commit

Permalink
Upgrade target-lexicon to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Dec 16, 2024
1 parent c447738 commit e6c0128
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ semver = "1.0.5"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
shlex = "1"
target-lexicon = { version = "0.12.15", features = ["std"] }
target-lexicon = { version = "0.13.0", features = ["std"] }
which = "7.0.0"

[features]
Expand Down
2 changes: 1 addition & 1 deletion src/zig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ pub fn prepare_zig_linker(target: &str) -> Result<ZigWrapper> {
};
cc_args.push(format!("-target {zig_arch}-linux-{target_env}{abi_suffix}"));
}
OperatingSystem::MacOSX { .. } | OperatingSystem::Darwin => {
OperatingSystem::MacOSX { .. } | OperatingSystem::Darwin(_) => {
let zig_version = Zig::zig_version()?;
// Zig 0.10.0 switched macOS ABI to none
// see https://github.com/ziglang/zig/pull/11684
Expand Down

0 comments on commit e6c0128

Please sign in to comment.