Skip to content

Commit

Permalink
Remove c++-link-interface-dynamic-library from crosstools, it's not used
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 191713379
  • Loading branch information
hlopko authored and Copybara-Service committed Apr 5, 2018
1 parent 8abed4b commit 832a0b1
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 390 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ public void collectMetadataArtifacts(Iterable<Artifact> objectFiles,

public static final ImmutableSet<String> ALL_LINK_ACTIONS =
ImmutableSet.of(
Link.LinkTargetType.INTERFACE_DYNAMIC_LIBRARY.getActionName(),
Link.LinkTargetType.DYNAMIC_LIBRARY.getActionName(),
Link.LinkTargetType.NODEPS_DYNAMIC_LIBRARY.getActionName(),
LinkTargetType.EXECUTABLE.getActionName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,6 @@ public static String getCppActionConfigs(
" flag_set {",
" action: 'c-compile'",
" action: 'c++-compile'",
" action: 'c++-link-interface-dynamic-library'",
" action: 'c++-link-dynamic-library'",
" action: 'c++-link-nodeps-dynamic-library'",
" action: 'c++-link-executable'",
Expand Down Expand Up @@ -855,7 +854,6 @@ public static String getCppActionConfigs(
" action: 'c++-link-executable'",
" action: 'c++-link-dynamic-library'",
" action: 'c++-link-nodeps-dynamic-library'",
" action: 'c++-link-interface-dynamic-library'",
" flag_group {",
" expand_if_all_available: 'is_using_fission'",
" flag: '-Wl,--gdb-index'",
Expand All @@ -870,7 +868,6 @@ public static String getCppActionConfigs(
" action: 'c++-link-executable'",
" action: 'c++-link-dynamic-library'",
" action: 'c++-link-nodeps-dynamic-library'",
" action: 'c++-link-interface-dynamic-library'",
" flag_group {",
" expand_if_all_available: 'strip_debug_symbols'",
" flag: '-Wl,-S'",
Expand Down Expand Up @@ -898,7 +895,6 @@ public static String getCppActionConfigs(
" }",
" }",
" flag_set {",
" action: 'c++-link-interface-dynamic-library'",
" action: 'c++-link-dynamic-library'",
" action: 'c++-link-nodeps-dynamic-library'",
" action: 'c++-link-executable'",
Expand Down Expand Up @@ -931,7 +927,6 @@ public static String getCppActionConfigs(
" }",
" }",
" flag_set {",
" action: 'c++-link-interface-dynamic-library'",
" action: 'c++-link-dynamic-library'",
" action: 'c++-link-nodeps-dynamic-library'",
" action: 'c++-link-executable'",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public enum LinkTargetType {
INTERFACE_DYNAMIC_LIBRARY(
".ifso",
Staticness.DYNAMIC,
"c++-link-interface-dynamic-library",
"c++-link-dynamic-library",
Picness.NOPIC, // Actually PIC but it's not indicated in the file name
ArtifactCategory.INTERFACE_LIBRARY,
Executable.NOT_EXECUTABLE),
Expand Down
Loading

0 comments on commit 832a0b1

Please sign in to comment.