2018-09-21 07:19:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
exec 2> >(exec grep -v \
|
|
|
|
-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/' \
|
2023-10-30 21:19:44 +09:00
|
|
|
-e '^ld: warning: ignoring duplicate libraries:' \
|
2023-11-06 23:29:24 +09:00
|
|
|
-e "warning: '\.debug_macinfo' is not currently supported:" \
|
|
|
|
-e "note: while processing" \
|
2018-09-21 07:19:13 +00:00
|
|
|
>&2)
|
|
|
|
exec "$@"
|