Skip to content
Snippets Groups Projects
Commit 99720f55 authored by Mike Hommey's avatar Mike Hommey
Browse files

Bug 1835239 - Make the new -Wbuiltin-macro-redefined warning a non-error....

Bug 1835239 - Make the new -Wbuiltin-macro-redefined warning a non-error. r=firefox-build-system-reviewers,sergesanspaille

... until we fix the underlying issues.

Differential Revision: https://phabricator.services.mozilla.com/D179197
parent a44cb334
No related branches found
No related tags found
No related merge requests found
......@@ -304,6 +304,11 @@ check_and_add_warning(
# Warn if APIs are used without available() checks on macOS.
check_and_add_warning("-Werror=unguarded-availability-new", when=target_is_osx)
# clang 17 warns about builtins being redefined and... well, we do that in
# multiple places, some of which are third-party. Until the situation is
# fixed, disable the new warning.
check_and_add_warning("-Wno-error=builtin-macro-redefined")
# Please keep the following last in this file
# Avoid requiring complicated logic for extra warning flags in moz.build files.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment