We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed05600 commit 7268615Copy full SHA for 7268615
crates/codspeed/src/request/arch/unsupported.rs
@@ -0,0 +1,6 @@
1
+pub type Value = u32;
2
+
3
+#[inline(always)]
4
+pub unsafe fn send_client_request(_default: Value, _args: &[Value; 6]) -> Value {
5
+ panic!("Not implemented for this architecture");
6
+}
crates/codspeed/src/request/mod.rs
@@ -27,3 +27,12 @@ mod arch;
27
#[cfg(target_arch = "aarch64")]
28
#[path = "arch/aarch64.rs"]
29
mod arch;
30
31
+#[cfg(not(any(
32
+ target_arch = "x86_64",
33
+ target_arch = "x86",
34
+ target_arch = "arm",
35
+ target_arch = "aarch64"
36
+)))]
37
+#[path = "arch/unsupported.rs"]
38
+mod arch;
0 commit comments