Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • bazel/toolchain_utils
1 result
Show changes
Commits on Source (4)
7.x
7.2.0
# [1.0.0-beta.11](https://git.gitlab.arm.com/bazel/toolchain_utils/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2024-06-21)
### Bug Fixes
- **export:** mark extension as reproducible ([8d61b2e](https://git.gitlab.arm.com/bazel/toolchain_utils/commit/8d61b2e0a76c64393fc5c43428c653f1f4fa5e5b))
# [1.0.0-beta.10](https://git.gitlab.arm.com/bazel/toolchain_utils/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2024-05-22)
### Bug Fixes
......
module(
name = "toolchain_utils",
version = "1.0.0-beta.10",
version = "1.0.0-beta.11",
bazel_compatibility = [
">=7.0.0",
],
......@@ -8,6 +8,7 @@ module(
)
bazel_dep(name = "bazel_skylib", version = "1.4.2")
bazel_dep(name = "bazel_features", version = "1.13.0")
bazel_dep(name = "platforms", version = "0.0.7")
triplet = use_repo_rule("//toolchain/local/triplet:defs.bzl", "toolchain_local_triplet")
......
This diff is collapsed.
7.x
7.2.0
This diff is collapsed.
load("@bazel_features//:features.bzl", "bazel_features")
load("//toolchain/export/symlink:repository.bzl", _ATTRS = "ATTRS", _DOC = "DOC", _symlink = "symlink")
visibility("//toolchain/export/...")
......@@ -89,6 +90,11 @@ def implementation(mctx):
for name, (_, attrs) in symlinks.items():
_symlink(name = name, **attrs)
if bazel_features.external_deps.extension_metadata_has_reproducible:
return mctx.extension_metadata(reproducible = True)
else:
return None
export = module_extension(
doc = DOC,
implementation = implementation,
......