mirror of https://github.com/bazelbuild/rules_cc
Adjust c archive example for modern linker input API.
This commit is contained in:
parent
b2f6e22c34
commit
8994fb0fe1
|
@ -30,14 +30,19 @@ def _my_c_archive_impl(ctx):
|
|||
unsupported_features = ctx.disabled_features,
|
||||
)
|
||||
|
||||
library_to_link = cc_common.create_library_to_link(
|
||||
actions = ctx.actions,
|
||||
feature_configuration = feature_configuration,
|
||||
cc_toolchain = cc_toolchain,
|
||||
static_library = output_file,
|
||||
linker_input = cc_common.create_linker_input(
|
||||
owner = ctx.label,
|
||||
libraries = depset(direct = [
|
||||
cc_common.create_library_to_link(
|
||||
actions = ctx.actions,
|
||||
feature_configuration = feature_configuration,
|
||||
cc_toolchain = cc_toolchain,
|
||||
static_library = output_file,
|
||||
),
|
||||
]),
|
||||
)
|
||||
compilation_context = cc_common.create_compilation_context()
|
||||
linking_context = cc_common.create_linking_context(libraries_to_link = [library_to_link])
|
||||
linking_context = cc_common.create_linking_context(linker_inputs = depset(direct = [linker_input]))
|
||||
|
||||
archiver_path = cc_common.get_tool_for_action(
|
||||
feature_configuration = feature_configuration,
|
||||
|
|
Loading…
Reference in New Issue