Fix the obsolete form of -Xdump-declarations-to argument

This commit is contained in:
Ilya Gorbunov
2017-10-14 02:00:13 +03:00
parent b9fa8d4d96
commit 93efc51843
7 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -121,7 +121,7 @@ compileBuiltinsKotlin {
freeCompilerArgs = [
"-version",
"-Xallow-kotlin-package",
"-Xdump-declarations-to", "${buildDir}/runtime-declarations.json",
"-Xdump-declarations-to=${buildDir}/runtime-declarations.json",
"-cp", "${rootDir}/dist/builtins",
"-module-name", "kotlin-runtime"
]
@@ -134,7 +134,7 @@ compileKotlin {
"-Xallow-kotlin-package",
"-Xmultifile-parts-inherit",
"-Xnormalize-constructor-calls=enable",
"-Xdump-declarations-to", "${buildDir}/stdlib-declarations.json",
"-Xdump-declarations-to=${buildDir}/stdlib-declarations.json",
"-module-name", project.name
]
}
+1 -1
View File
@@ -50,7 +50,7 @@ compileKotlin {
"-Xallow-kotlin-package",
"-Xmultifile-parts-inherit",
"-Xnormalize-constructor-calls=enable",
"-Xdump-declarations-to", "${buildDir}/stdlib-jdk7-declarations.json",
"-Xdump-declarations-to=${buildDir}/stdlib-jdk7-declarations.json",
"-module-name", project.name
]
}
+1 -1
View File
@@ -53,7 +53,7 @@ compileKotlin {
"-Xallow-kotlin-package",
"-Xmultifile-parts-inherit",
"-Xnormalize-constructor-calls=enable",
"-Xdump-declarations-to", "${buildDir}/stdlib-jdk8-declarations.json",
"-Xdump-declarations-to=${buildDir}/stdlib-jdk8-declarations.json",
"-module-name", project.name
]
}
+1 -1
View File
@@ -50,7 +50,7 @@ compileKotlin {
"-Xallow-kotlin-package",
"-Xmultifile-parts-inherit",
"-Xnormalize-constructor-calls=enable",
"-Xdump-declarations-to", "${buildDir}/stdlib-jre7-declarations.json",
"-Xdump-declarations-to=${buildDir}/stdlib-jre7-declarations.json",
"-module-name", project.name
]
}
+1 -1
View File
@@ -53,7 +53,7 @@ compileKotlin {
"-Xallow-kotlin-package",
"-Xmultifile-parts-inherit",
"-Xnormalize-constructor-calls=enable",
"-Xdump-declarations-to", "${buildDir}/stdlib-jre8-declarations.json",
"-Xdump-declarations-to=${buildDir}/stdlib-jre8-declarations.json",
"-module-name", project.name
]
}