Add the Catalyst constraint to the list of target environments.

This aligns with the LLVM triple representing this platform as a variant of iOS.

PiperOrigin-RevId: 358194575
(cherry picked from commit 84ad2df29043b0c8f7eef150dd73f30d2e5216d0)
1 file changed
tree: 0e0a3d7775cd0958e5d58864288c22c76bf5ef33
  1. .bazelci/
  2. constraints/
  3. doc/
  4. lib/
  5. rules/
  6. test/
  7. tools/
  8. .gitignore
  9. AUTHORS
  10. BUILD
  11. CONTRIBUTING.md
  12. LICENSE
  13. README.md
  14. WORKSPACE
README.md

Apple Support for Bazel

Build Status

This repository contains helper methods that support building rules that target Apple platforms.

Quick setup

Add the following to your WORKSPACE file to add this repository as a dependency:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "build_bazel_apple_support",
    sha256 = "02ac04ff0a0de1e891a1fa8839cc6a5957e3c4a80856545aa35a786d15aad108",
    url = "https://github.com/bazelbuild/apple_support/releases/download/0.9.1/apple_support.0.9.1.tar.gz",
)

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

apple_support_dependencies()