Skip to content

Commit 646ec6e

Browse files
committed
Ignore warning about -force_flat_namespace on macOS
1 parent 19b967c commit 646ec6e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/build_pkgs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,8 +1041,9 @@ sub grep_log {
10411041
next if /warning: unwind table: .* suspicious InitialLoc value 0: binary search table will be incomplete if section requires runtime relocation/;
10421042
# GNU Hurd has no 64-bit glob()
10431043
next if /warning: glob64 is not implemented and will always fail/;
1044-
# Solaris Studio compiler warns about anonymous unions
1045-
next if /warning: anonymous union declaration/;
1044+
# macOS no longer supports -force_flat_namespace
1045+
# but doesn't not honor -Werror to check this
1046+
next if /warning: -force_flat_namespace is no longer supported/;
10461047
# HP-UX shl_t uses type-punning
10471048
next if /sudo_dso.c:.*warning: type-punning to incomplete type might break strict-aliasing rules/;
10481049
# Bogus HP-UX 11.23 warning about PTHREAD_MUTEX_INITIALIZER

0 commit comments

Comments
 (0)