We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7240849 + 1e1376e commit 2978bddCopy full SHA for 2978bdd
.github/workflows/main.yml
@@ -9,6 +9,9 @@ jobs:
9
fail-fast: false
10
matrix:
11
include:
12
+ - target: aarch64-apple-darwin
13
+ os: macos-14
14
+ rust: nightly
15
- target: aarch64-unknown-linux-gnu
16
os: ubuntu-latest
17
rust: nightly
@@ -81,6 +84,8 @@ jobs:
81
84
os: windows-latest
82
85
rust: nightly-x86_64-gnu
83
86
steps:
87
+ - name: Print runner information
88
+ run: uname -a
89
- uses: actions/checkout@v4
90
with:
91
submodules: true
testcrate/tests/lse.rs
@@ -1,8 +1,5 @@
1
#![feature(decl_macro)] // so we can use pub(super)
2
-#![cfg(all(
3
- any(target_arch = "aarch64", target_arch = "arm64ec"),
4
- not(feature = "no-asm")
5
-))]
+#![cfg(all(target_arch = "aarch64", target_os = "linux", not(feature = "no-asm")))]
6
7
/// Translate a byte size to a Rust type.
8
macro int_ty {
0 commit comments