aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java
index ae2992c4ba..e4f6e183c8 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsStore.java
@@ -64,14 +64,14 @@ public final class CcLinkParamsStore extends AbstractCcLinkParamsStore {
@VisibleForSerialization
@AutoCodec.Instantiator
public CcLinkParamsStore(
- CcLinkParams staticSharedParams,
- CcLinkParams staticNoSharedParams,
- CcLinkParams noStaticSharedParams,
- CcLinkParams noStaticNoSharedParams) {
- super.staticSharedParams = staticSharedParams;
- super.staticNoSharedParams = staticNoSharedParams;
- super.noStaticSharedParams = noStaticSharedParams;
- super.noStaticNoSharedParams = noStaticNoSharedParams;
+ CcLinkParams staticModeParamsForDynamicLibrary,
+ CcLinkParams staticModeParamsForExecutable,
+ CcLinkParams dynamicModeParamsForDynamicLibrary,
+ CcLinkParams dynamicModeParamsForExecutable) {
+ super.staticModeParamsForDynamicLibrary = staticModeParamsForDynamicLibrary;
+ super.staticModeParamsForExecutable = staticModeParamsForExecutable;
+ super.dynamicModeParamsForDynamicLibrary = dynamicModeParamsForDynamicLibrary;
+ super.dynamicModeParamsForExecutable = dynamicModeParamsForExecutable;
}
public static com.google.devtools.build.lib.rules.cpp.CcLinkParamsStore merge(