From 7279873bb44bbe9a49a18d3c0eeb27db3e94a079 Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Wed, 15 Mar 2017 19:18:32 +0300 Subject: [PATCH] Fix build of interop tests. --- buildSrc/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy b/buildSrc/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy index 0e123e94d4f..90ad26106f3 100644 --- a/buildSrc/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy +++ b/buildSrc/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy @@ -218,7 +218,7 @@ class RunInteropKonanTest extends KonanTest { List linkerArguments = interopConf.linkerOpts // TODO: add arguments from .def file List compilerArguments = ["-library", interopBc, "-nativelibrary", interopStubsBc] + - linkerArguments.collectMany { ["-linkerArg", it] } + linkerArguments.collectMany { ["-linkerArgs", it] } runCompiler(filesToCompile, exe, compilerArguments) }