This line here:
|
flag_groups = [flag_group(flags = ["-fdebug-compilation-dir", "."])], |
introduced in this commit:
0cb8757
causes Bazel 4.0.0 to not work with XCode 11.3 because it does not support the -fdebug-compilation-dir flag:
clang --version
Apple clang version 11.0.0 (clang-1100.0.33.16)
clang: error: unknown argument: '-fdebug-compilation-dir'
That version of XCode is still in pretty common use.
This line here:
bazel/tools/osx/crosstool/cc_toolchain_config.bzl
Line 5369 in 8959dff
introduced in this commit:
0cb8757
causes Bazel 4.0.0 to not work with XCode 11.3 because it does not support the
-fdebug-compilation-dirflag:clang --version
Apple clang version 11.0.0 (clang-1100.0.33.16)
clang: error: unknown argument: '-fdebug-compilation-dir'
That version of XCode is still in pretty common use.