1.18.0
What's Changed
- Enable link time -Os in opt builds by @cerisier in #348
- Fix bazel @ HEAD compat by @keith in #351
- Copy files into
local_config_apple_cc
instead of symlinking by @brentleyjones in #355 - Add support for CLT only by @keith in #354
- Copy osx_cc_wrapper.sh.tpl from bazel by @keith in #357
- Add the
xcode_sdk_variant
rule. by @luispadron in #358 - Use build rules for some toolchain tools by @brentleyjones in #361
- Enable the
archive_param_file
feature by default by @brentleyjones in #364 - Always create toolchain by @brentleyjones in #365
This release is compatible with 6.x LTS, 7.x LTS, and 8.x rolling releases.
MODULE.bazel Snippet
bazel_dep(name = "apple_support", version = "1.18.0", repo_name = "build_bazel_apple_support")
Workspace Snippet
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_apple_support",
sha256 = "b6148de2d7bbdf9e5819b4e2265f6508321a8e1f0a15990eb048f822cd41550d",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.18.0/apple_support.1.18.0.tar.gz",
)
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()