What's Changed
- Fix not stripping binaries by @keith in #468
- Add missing ZERO_AR_DATE env var by @keith in #467
- Pass -object_path_lto linker flag for LTO builds (#420) by @ma-oli in #428
- Improved ergonomics of
http_dmg
by @UebelAndre - Cleanup some legacy crosstool configuration by @keith
- Fix error when path to Xcode contains a space by @jszumski in #464
New Contributors
- @ma-oli made their first contribution in #428
- @EdSchouten made their first contribution in #431
- @jszumski made their first contribution in #464
Full Changelog: 1.23.1...1.24.0
This release is compatible with 7.x LTS, 8.x LTS, and rolling releases.
MODULE.bazel Snippet
bazel_dep(name = "apple_support", version = "1.24.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 = "69b3f650e909df177ab157c26fd253396b15628f9775f037603fb9c3e6da7ad3",
url = "https://github.com/bazelbuild/apple_support/releases/download/1.24.0/apple_support.1.24.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()