Skip to content

Commit

Permalink
Avoid using unstable target abi feature for gnullvm support (#2515)
Browse files Browse the repository at this point in the history
  • Loading branch information
mati865 authored May 24, 2023
1 parent a900999 commit c5ab2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/libs/targets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.48.0" }
[target.'cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.48.0" }

[target.'cfg(all(target_arch = "x86_64", target_env = "gnu", target_abi = "llvm", not(windows_raw_dylib)))'.dependencies]
[target.x86_64-pc-windows-gnullvm.dependencies]
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.48.0" }

[target.'cfg(all(target_arch = "aarch64", target_env = "gnu", target_abi = "llvm", not(windows_raw_dylib)))'.dependencies]
[target.aarch64-pc-windows-gnullvm.dependencies]
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.0" }

0 comments on commit c5ab2c1

Please sign in to comment.