Skip to content

Commit

Permalink
Define cc-compiler-darwin in Xcode toolchain
Browse files Browse the repository at this point in the history
Previously, if the xcode_locator failed and cc_autoconf_toolchain used
the non-Xcode C++ toolchain as a fallback, its reference to
@local_config_cc//:cc-compiler-darwin, where darwin is the legacy cpu
value for x86_64 macOS, would be invalid.
  • Loading branch information
fmeum committed Feb 11, 2022
1 parent 8431ef3 commit d7c3dfd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tools/osx/crosstool/BUILD.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ cc_toolchain_suite(
for arch in OSX_TOOLS_ARCHS
]

# When xcode_locator fails and causes cc_autoconf_toolchains to fall back
# to the non-Xcode C++ toolchain, it uses the legacy cpu value to refer to
# the toolchain, which is "darwin" for x86_64 macOS.
alias(
name = "cc-compiler-darwin",
actual = ":cc-compiler-darwin-x86_64",
)

[
cc_toolchain_config(
name = arch,
Expand Down

0 comments on commit d7c3dfd

Please sign in to comment.