mirror of https://github.com/rust-lang/rust.git
Rollup merge of #127177 - bjorn3:arm64_macos_cg_clif, r=Mark-Simulacrum
Distribute rustc_codegen_cranelift for arm64 macOS Support for arm64 macOS has been added to rustc_codegen_cranelift recently. Fixes https://github.com/rust-lang/rustc_codegen_cranelift/issues/1502
This commit is contained in:
commit
b66b4020d8
|
@ -70,7 +70,7 @@ For more docs on how to build and test see [build_system/usage.txt](build_system
|
|||
|FreeBSD|✅[^no-rustup]|❓|❓|❓|
|
||||
|AIX|❌[^xcoff]|N/A|N/A|❌[^xcoff]|
|
||||
|Other unixes|❓|❓|❓|❓|
|
||||
|macOS|✅|✅[^no-rustup]|N/A|N/A|
|
||||
|macOS|✅|✅|N/A|N/A|
|
||||
|Windows|✅[^no-rustup]|❌|N/A|N/A|
|
||||
|
||||
✅: Fully supported and tested
|
||||
|
|
|
@ -203,7 +203,9 @@ pub fn target_supports_cranelift_backend(target: TargetSelection) -> bool {
|
|||
|| target.contains("aarch64")
|
||||
|| target.contains("s390x")
|
||||
|| target.contains("riscv64gc")
|
||||
} else if target.contains("darwin") || target.is_windows() {
|
||||
} else if target.contains("darwin") {
|
||||
target.contains("x86_64") || target.contains("aarch64")
|
||||
} else if target.is_windows() {
|
||||
target.contains("x86_64")
|
||||
} else {
|
||||
false
|
||||
|
|
|
@ -326,6 +326,7 @@ auto:
|
|||
NO_DEBUG_ASSERTIONS: 1
|
||||
NO_OVERFLOW_CHECKS: 1
|
||||
DIST_REQUIRE_ALL_TOOLS: 1
|
||||
CODEGEN_BACKENDS: llvm,cranelift
|
||||
<<: *job-macos-m1
|
||||
|
||||
# This target only needs to support 11.0 and up as nothing else supports the hardware
|
||||
|
|
Loading…
Reference in New Issue