Skip to content

Commit

Permalink
Fix build failure with OpenThread RCP
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Oct 15, 2024
1 parent 5b16cb8 commit 612bf1a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/build_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,14 @@ def main():
args.build_dir: "/src",
toolchain: "/toolchain",
}.items()
] + ["-Wall", "-Wextra", "-Werror"]
] + [
"-Wall",
"-Wextra",
"-Werror",
# XXX: Fails due to protocol/openthread/platform-abstraction/efr32/radio.c@RAILCb_Generic
# Remove once this is fixed in the SDK!
"-Wno-error=unused-but-set-variable",
]

output_artifact = (args.build_dir / "build/debug" / base_project_name).with_suffix(
".gbl"
Expand Down

0 comments on commit 612bf1a

Please sign in to comment.