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 6be4a1a commit 28d0052Copy full SHA for 28d0052
crates/codspeed/build.rs
@@ -16,6 +16,7 @@ fn main() {
16
let mut build = cc::Build::new();
17
build
18
.flag("-std=c11")
19
+ // .file("instrument-hooks/includes/core.h")
20
.file("instrument-hooks/dist/core.c")
21
.include("instrument-hooks/includes")
22
// We generated the C code from Zig, which contains some warnings
@@ -27,6 +28,7 @@ fn main() {
27
28
.flag("-Wno-type-limits")
29
.flag("-Wno-format")
30
.flag("-Wno-format-security")
31
+ .flag("-Wno-builtin-declaration-mismatch")
32
// Not supported in clang: https://stackoverflow.com/a/41673702
33
.flag_if_supported("-Wno-maybe-uninitialized")
34
.warnings(false)
0 commit comments