mirror of https://github.com/bazelbuild/rules_cc
Create group for c compile actions
BEGIN_PUBLIC Create group for c compile actions Adds `c_compile_actions` group to provide a logical C equivalent for `cpp_compile_actions`. END_PUBLIC PiperOrigin-RevId: 673408772 Change-Id: Ic5ccb57bc1fa7a98999d944316b97a39aac571ac
This commit is contained in:
parent
7a67e9887b
commit
da1ac71c8e
|
@ -184,6 +184,13 @@ cc_action_type_set(
|
|||
],
|
||||
)
|
||||
|
||||
cc_action_type_set(
|
||||
name = "c_compile_actions",
|
||||
actions = [
|
||||
":c_compile",
|
||||
],
|
||||
)
|
||||
|
||||
cc_action_type_set(
|
||||
name = "cpp_compile_actions",
|
||||
actions = [
|
||||
|
@ -201,7 +208,7 @@ cc_action_type_set(
|
|||
name = "compile_actions",
|
||||
actions = [
|
||||
":cpp_compile_actions",
|
||||
":c_compile",
|
||||
":c_compile_actions",
|
||||
":assembly_actions",
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue