1.12.0
What's Changed
- Fix darwin_arm64e architecture
- Switch toolchain to use
cc_toolchain
- Make
BAZEL_ALLOW_NON_APPLICATIONS_XCODE
invalidate toolchain configuration, thanks @illicitonion! - Fix linkmap flags for rule types that don't support them
- Fix versioned dylib support (only compatible with bazel 8.x+)
This release is compatible with 5.x LTS, 6.x LTS, 7.x LTS, and 8.x rolling releases
MODULE.bazel Snippet
bazel_dep(name = "apple_support", version = "1.12.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 = "100d12617a84ebc7ee7a10ecf3b3e2fdadaebc167ad93a21f820a6cb60158ead",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.12.0/apple_support.1.12.0.tar.gz",
)
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()