github MobileNativeFoundation/rules_xcodeproj 0.12.3
0.12.3: Improved compiler and linker flags handling

latest releases: 3.2.0, 3.1.2, 3.1.1...
2 years ago

What’s Changed

  • Improved handling of rules_ios's apple_framework.vendored_xcframeworks: #1641
  • Continued work on passing through compiler flags directly from Bazel: #1617, #1620, #1627, #1629, #1630, #1632, #1633, #1636, #1637, #1638
  • We no longer set OTHER_CFLAGS/OTHER_CPLUSPLUSFLAGS when not applicable: #1628 and #1635
  • Fixed stale BwB installs: #1631
  • Fixed some lldb clang compilation issues regarding framework search paths: #1621 and #1622
  • Fixed some BwX compiling regressions: #1642 and #1647
  • Fixed some BwX linking regressions: #1639 and #1640
  • Fixed depset mutability issue: #1615

Full Changelog: 0.12.2...0.12.3

See the 0.12.0 release notes for more details of what is in the 0.12.0 release.

Bzlmod Snippet

bazel_dep(name = "rules_xcodeproj", version = "0.12.3", repo_name = "com_github_buildbuddy_io_rules_xcodeproj")

release.tar.gz’s integrity: sha256-8/m220Qokq9NFsKBnZIe+GB++GJ2yox2K4KAD11nVa0=

Workspace Snippet

Please use the release asset (release.tar.gz) from your Bazel WORKSPACE instead of GitHub's source asset to reduce download size and improve reproducibility.

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

http_archive(
    name = "com_github_buildbuddy_io_rules_xcodeproj",
    sha256 = "f3f9b6db442892af4d16c2819d921ef8607ef86276ca8c762b82800f5d6755ad",
    url = "https://github.com/buildbuddy-io/rules_xcodeproj/releases/download/0.12.3/release.tar.gz",
)

load(
    "@com_github_buildbuddy_io_rules_xcodeproj//xcodeproj:repositories.bzl",
    "xcodeproj_rules_dependencies",
)

xcodeproj_rules_dependencies()

load(
    "@build_bazel_rules_apple//apple:repositories.bzl",
    "apple_rules_dependencies",
)

apple_rules_dependencies()

load(
    "@build_bazel_rules_swift//swift:repositories.bzl",
    "swift_rules_dependencies",
)

swift_rules_dependencies()

load(
    "@build_bazel_rules_swift//swift:extras.bzl",
    "swift_rules_extra_dependencies",
)

swift_rules_extra_dependencies()

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

apple_support_dependencies()

Don't miss a new rules_xcodeproj release

NewReleases is sending notifications on new releases.