What's Changed
- Update C++ standard default to 17 by @aaronsky in #376
- Update for get_cpu upstream removal by @keith in #381
- Fix generate_linkmap for cc_binary by @keith in #389
- Replace libtool shell template with C++ by @keith in #388
Full Changelog: 1.19.0...1.20.0
This release is compatible with 6.x LTS, 7.x LTS, 8.x LTS, and rolling releases.
MODULE.bazel Snippet
bazel_dep(name = "apple_support", version = "1.20.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 = "1bb8059831503602c2eb4d3d0a61c3e75ba4a2bbd43c1603cb79fe9bdcfdde51",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.20.0/apple_support.1.20.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()