Replace cc_common.create_symlink_library_to_link calls (#117)

... with cc_common.create_library_to_link
This commit is contained in:
irengrig 2018-10-02 12:39:58 +02:00 committed by GitHub
parent c7d13b34e5
commit 0d5f5c2da7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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,