Skip to content

1.8.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Jul 00:55
· 95 commits to master since this release
fb39701

What's Changed

  • Replace DEVELOPER_DIR in debug prefix mapping with /PLACEHOLDER_DEVELOPER_DIR to be more clear that it's not the same as $DEVELOPER_DIR
  • Add ~/Applications to allowed include directories to fix declared inclusion bazel errors if you keep Xcode there. If you keep Xcode in a non-standard directory you need to set --repo_env=BAZEL_ALLOW_NON_APPLICATIONS_XCODE=1 to allow arbitrary directories
  • Remove cpp_linker_flags feature which resulted in duplicate -lc++ linker flags causing a warning with ld-prime in Xcode 15 beta 4. These options are passed elsewhere so this shouldn't result in any behavior change

This release is compatible with 5.x LTS, 6.x LTS, and bazel 7.x rolling releases

MODULE.bazel Snippet

bazel_dep(name = "apple_support", version = "1.8.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 = "34bab0182c33ef595015eb0e66518ef09b367a7841cdba997c6c01843b62f753",
    url = "https://github.com/bazelbuild/apple_support/releases/download/1.8.0/apple_support.1.8.0.tar.gz",
)

load(
    "@build_bazel_apple_support//lib:repositories.bzl",
    "apple_support_dependencies",
)

apple_support_dependencies()