Uniform compiler/linker options treatment (#614)

This commit is contained in:
Nikolay Igotti
2017-05-29 15:37:15 +03:00
committed by GitHub
parent c9ce175224
commit ff8bce79d5
14 changed files with 43 additions and 46 deletions
@@ -315,7 +315,7 @@ class RunInteropKonanTest extends KonanTest {
List<String> linkerArguments = interopConf.linkerOpts // TODO: add arguments from .def file
List<String> compilerArguments = ["-library", interopBc, "-nativelibrary", interopStubsBc] +
linkerArguments.collectMany { ["-linkerArgs", it] }
linkerArguments.collectMany { ["-linkerOpts", it] }
runCompiler(filesToCompile, exe, compilerArguments)
}