Ignore warnings about currently unsupported .debug_macinfo

This commit is contained in:
Nobuyoshi Nakada 2023-11-06 23:29:24 +09:00
parent 6031fdc632
commit f2d6b41c8e
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -3,5 +3,7 @@ exec 2> >(exec grep -v \
-e '^ld: warning: The [a-z0-9_][a-z0-9_]* architecture is deprecated for macOS' \ -e '^ld: warning: The [a-z0-9_][a-z0-9_]* architecture is deprecated for macOS' \
-e '^ld: warning: text-based stub file /System/Library/Frameworks/' \ -e '^ld: warning: text-based stub file /System/Library/Frameworks/' \
-e '^ld: warning: ignoring duplicate libraries:' \ -e '^ld: warning: ignoring duplicate libraries:' \
-e "warning: '\.debug_macinfo' is not currently supported:" \
-e "note: while processing" \
>&2) >&2)
exec "$@" exec "$@"