We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b07902 commit 43a67ebCopy full SHA for 43a67eb
internal/native_image/classic.bzl
@@ -58,6 +58,9 @@ def _graal_binary_classic_implementation(ctx):
58
native_toolchain.c_compiler_path,
59
)
60
61
+ if ctx.files.data:
62
+ direct_inputs.extend(ctx.files.data)
63
+
64
inputs = depset(
65
direct_inputs,
66
transitive = transitive_inputs,
internal/native_image/rules.bzl
@@ -100,6 +100,9 @@ def _graal_binary_implementation(ctx):
100
bin_postfix = bin_postfix,
101
102
103
104
105
106
# assemble final inputs
107
108
0 commit comments