mirror of https://github.com/bazelbuild/rules_cc
Merge pull request #85 from benjaminp:modern-linking
PiperOrigin-RevId: 341368143 Change-Id: I9b86beeb90f6df6d3564209f1e97ada4ea7bc319
This commit is contained in:
commit
7bd0e49cfb
|
@ -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