Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ fn main() {
.clang_args(&cflags)
.use_core()
.ctypes_prefix("core::ffi")
// We've traditionally used size_t explicitly and cast it in riot-wrappers; changing this
// now (going from bindgen 0.60 to 0.64) would break where it's used (although we still
// might instate a type alias for size_t later instead).
// This is the defensive choice in presence of odd targets, as it forces us to be explicit
// more often: Bindgen would err with "Target platform requires `--no-size_t-is-usize`." in
// some cases, even though we have not encountered them yet.
.size_t_is_usize(false)
.impl_debug(true)
// Structs listed here are Packed and thus need impl_debug, but also contain non-Copy
Expand Down
Loading