Replace cc_common.create_symlink_library_to_link calls (#117)
... with cc_common.create_library_to_link
This commit is contained in:
parent
c7d13b34e5
commit
0d5f5c2da7
|
@ -101,7 +101,7 @@ def _build_shared_library_to_link(ctx, library, cc_toolchain, targets_windows):
|
|||
artifact_category = "dynamic_library",
|
||||
)
|
||||
else:
|
||||
return cc_common.create_symlink_library_to_link(
|
||||
return cc_common.create_library_to_link(
|
||||
ctx = ctx,
|
||||
cc_toolchain = cc_toolchain,
|
||||
library = library,
|
||||
|
@ -118,7 +118,7 @@ def _build_interface_library_to_link(ctx, library, cc_toolchain, targets_windows
|
|||
artifact_category = "interface_library",
|
||||
)
|
||||
else:
|
||||
return cc_common.create_symlink_library_to_link(
|
||||
return cc_common.create_library_to_link(
|
||||
ctx = ctx,
|
||||
cc_toolchain = cc_toolchain,
|
||||
library = library,
|
||||
|
|
Loading…
Reference in New Issue