From 31130c525a357d97ad1319dccb635324b2636104 Mon Sep 17 00:00:00 2001 From: Sam Gammon Date: Fri, 1 Sep 2023 17:02:51 -0700 Subject: [PATCH] chore: rebuild bzlmod lock and docs Signed-off-by: Sam Gammon --- MODULE.bazel.lock | 4 ++-- docs/api/defs.md | 2 +- docs/api/legacy.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index 1811a227..8d2e09c6 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -2803,14 +2803,14 @@ } }, "//:extensions.bzl%graalvm": { - "bzlTransitiveDigest": "dx1NHndC4WEvVNZJHqa7pdZn1nO4wenPCSmen/c3NaE=", + "bzlTransitiveDigest": "aQJryYP9wiwZXQ8JYwsuauQpVIo/X7CDOS2SiXt2rBI=", "accumulatedFileDigests": {}, "envVariables": {}, "generatedRepoSpecs": { "graalvm": { "bzlFile": "@@//internal:graalvm_bindist.bzl", "ruleClassName": "_graalvm_bindist_repository", - "attributes": {"name":"--_main~graalvm~graalvm","version":"--20.0.2","java_version":"--20","distribution":"--ce","components":["--wasm","--js"],"setup_actions":[],"enable_toolchain":true,"toolchain_config":"--graalvm_toolchain_config_repo","sha256":"--"} + "attributes": {"name":"--_main~graalvm~graalvm","version":"--20.0.2","java_version":"--20","distribution":"--ce","components":["--wasm","--js"],"setup_actions":[],"enable_toolchain":true,"toolchain_config":"--graalvm_toolchain_config_repo"} }, "graalvm_toolchain_config_repo": { "bzlFile": "@@//internal:graalvm_bindist.bzl", diff --git a/docs/api/defs.md b/docs/api/defs.md index 5ad0b76e..5455db0f 100755 --- a/docs/api/defs.md +++ b/docs/api/defs.md @@ -32,7 +32,7 @@ Generates and compiles a GraalVM native image from a Java library target. | data | Data files to make available during the compilation. No default; optional. | `[]` | | extra_args | Extra `native-image` args to pass. Last wins. No default; optional. | `[]` | | check_toolchains | Whether to perform toolchain checks in `native-image`; defaults to `True` on Windows, `False` otherwise. | `select({"@bazel_tools//src/conditions:windows": True, "//conditions:default": False})` | -| static_zlib | A cc_library or cc_import target that provides zlib as a static library. On Linux, this is used when Graal statically links zlib into the binary, e.g. with `-H:+StaticExecutableWithDynamicLibC`. | `False` | +| static_zlib | A cc_library or cc_import target that provides zlib as a static library. On Linux, this is used when Graal statically links zlib into the binary, e.g. with `-H:+StaticExecutableWithDynamicLibC`. | `None` | | c_compiler_option | Extra C compiler options to pass through `native-image`. No default; optional. | `[]` | | executable_name | Set the name of the output binary; defaults to `%target%-bin`, or `%target%-bin.exe` on Windows. The special string `%target%`, if present, is replaced with `name`. | `select({"@bazel_tools//src/conditions:windows": "%target%-bin.exe", "//conditions:default": "%target%-bin"})` | | native_image_tool | Specific `native-image` executable target to use. | `None` | diff --git a/docs/api/legacy.md b/docs/api/legacy.md index 625a8d46..2fab25eb 100755 --- a/docs/api/legacy.md +++ b/docs/api/legacy.md @@ -33,7 +33,7 @@ Alias for the renamed `native_image` rule. Identical. | extra_args | Extra `native-image` args to pass. Last wins. No default; optional. | `[]` | | check_toolchains | Whether to perform toolchain checks in `native-image`; defaults to `True` on Windows, `False` otherwise. | `select({"@bazel_tools//src/conditions:windows": True, "//conditions:default": False})` | | c_compiler_option | Extra C compiler options to pass through `native-image`. No default; optional. | `[]` | -| static_zlib | A cc_library or cc_import target that provides zlib as a static library. On Linux, this is used when Graal statically links zlib into the binary, e.g. with `-H:+StaticExecutableWithDynamicLibC`. | `False` | +| static_zlib | A cc_library or cc_import target that provides zlib as a static library. On Linux, this is used when Graal statically links zlib into the binary, e.g. with `-H:+StaticExecutableWithDynamicLibC`. | `None` | | executable_name | Set the name of the output binary; defaults to `%target%-bin`, or `%target%-bin.exe` on Windows. The special string `%target%`, if present, is replaced with `name`. | `select({"@bazel_tools//src/conditions:windows": "%target%-bin.exe", "//conditions:default": "%target%-bin"})` | | native_image_tool | Specific `native-image` executable target to use. | `Label("@graalvm//:native-image")` | | kwargs | Extra keyword arguments are passed to the underlying `native_image` rule. | none | @@ -70,7 +70,7 @@ Generates and compiles a GraalVM native image from a Java library target. | extra_args | Extra `native-image` args to pass. Last wins. No default; optional. | `[]` | | check_toolchains | Whether to perform toolchain checks in `native-image`; defaults to `True` on Windows, `False` otherwise. | `select({"@bazel_tools//src/conditions:windows": True, "//conditions:default": False})` | | c_compiler_option | Extra C compiler options to pass through `native-image`. No default; optional. | `[]` | -| static_zlib | A cc_library or cc_import target that provides zlib as a static library. On Linux, this is used when Graal statically links zlib into the binary, e.g. with `-H:+StaticExecutableWithDynamicLibC`. | `False` | +| static_zlib | A cc_library or cc_import target that provides zlib as a static library. On Linux, this is used when Graal statically links zlib into the binary, e.g. with `-H:+StaticExecutableWithDynamicLibC`. | `None` | | executable_name | Set the name of the output binary; defaults to `%target%-bin`, or `%target%-bin.exe` on Windows. The special string `%target%`, if present, is replaced with `name`. | `select({"@bazel_tools//src/conditions:windows": "%target%-bin.exe", "//conditions:default": "%target%-bin"})` | | native_image_tool | Specific `native-image` executable target to use. | `Label("@graalvm//:native-image")` | | kwargs | Extra keyword arguments are passed to the underlying `native_image` rule. | none |