
Necessary because it otherwise calls actual cc after it does whatever it does. So we force it to call our cc.
4 lines
96 B
Bash
Executable File
4 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
pwd="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec xcrun mig -cc $pwd/cc "$@"
|