Skip to content

Commit

Permalink
Pigweed roll with fixes for compilation (#24064)
Browse files Browse the repository at this point in the history
* Update pigweed to latest version that dependabot wanted.

* Fix mbedtls options to avoid new clang error

* Restyle
  • Loading branch information
andy31415 authored and pull[bot] committed Aug 4, 2023
1 parent 8741598 commit 2249826
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion third_party/mbedtls/mbedtls.gni
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ template("mbedtls_target") {
]

if (is_clang) {
cflags += [ "-Wno-shorten-64-to-32" ]
cflags += [
"-Wno-shorten-64-to-32",
"-Wno-unused-but-set-variable", # bignum.c: variable 't' set but not
# used
]
}
}

Expand Down
2 changes: 1 addition & 1 deletion third_party/pigweed/repo
Submodule repo updated 147 files

0 comments on commit 2249826

Please sign in to comment.