aboutsummaryrefslogtreecommitdiffstats
path: root/tool/darwin-cc
blob: 8c96236603299491381f0d710e88ceca701feafe (plain)
1
2
3
4
5
6
7
#!/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/' \
  -e '^ld: warning: ignoring duplicate libraries:' \
  >&2)
exec "$@"