mirror of https://github.com/bazelbuild/rules_cc
Make output_file accessible from strip.
BEGIN_PUBLIC Make output_file accessible from strip. See https://github.com/bazelbuild/bazel/pull/22638 END_PUBLIC PiperOrigin-RevId: 640622335 Change-Id: I96fdca9494e5043f546b588490d692d67f94ee2b
This commit is contained in:
parent
531c9951a8
commit
1cf35f02db
|
@ -261,7 +261,10 @@ cc_variable(
|
||||||
|
|
||||||
cc_variable(
|
cc_variable(
|
||||||
name = "output_file",
|
name = "output_file",
|
||||||
actions = ["//cc/toolchains/actions:compile_actions"],
|
actions = [
|
||||||
|
"//cc/toolchains/actions:compile_actions",
|
||||||
|
"//cc/toolchains/actions:strip",
|
||||||
|
],
|
||||||
type = types.file,
|
type = types.file,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue