Skip to content

Commit

Permalink
Ignore format-overflow on some clang builds of the WT bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaum committed Oct 23, 2024
1 parent 25a4436 commit 215c3e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/db-wiredtiger/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ fn main() {
// WiredTiger has naughties that causes -Werror=array-bounds to puke all over in release
// build.
.cflag("-Wno-error=array-bounds")
// clang builds on some machines were dying on this one
.cflag("-Wno-error=format-overflow")
.build();
let build = dst.join("build");
let include_dir = build.join("include");
Expand Down

0 comments on commit 215c3e8

Please sign in to comment.