I want to use include-what-you-use with xcodebuild. The problem is when I do:
$ export CC=/path/to/include-what-you-use
$ xcodebuild
from command line, I get errors and build stops. I've read that a common way to use iwyu with make
is to run make -k
, so I want to use xcodebuild
in a similar way. Is it possible? I found nothing about it in man xcodebuild
.