Skip to content

Commit 5f95569

Browse files
zardiliorKotlinBuild
authored andcommitted
[JKLIB] Remove -Xcompile-builtins-as-part-of-stdlib from build.gradle.kts and compiler arguments
1 parent b7ec310 commit 5f95569

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

compiler/cli/cli-base/gen/org/jetbrains/kotlin/cli/common/arguments/K2JKlibCompilerArgumentsCopyGenerated.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ fun copyK2JKlibCompilerArguments(from: K2JKlibCompilerArguments, to: K2JKlibComp
1414
to.compileIr = from.compileIr
1515
to.destination = from.destination
1616
to.enhanceTypeParameterTypesToDefNotNull = from.enhanceTypeParameterTypesToDefNotNull
17-
to.expectBuiltinsAsPartOfStdlib = from.expectBuiltinsAsPartOfStdlib
1817
to.friendModules = from.friendModules
1918
to.friendPaths = from.friendPaths?.copyOf()
2019
to.inheritMultifileParts = from.inheritMultifileParts

compiler/cli/cli-base/src/org/jetbrains/kotlin/cli/common/arguments/K2JKlibCompilerArguments.kt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,6 @@ class K2JKlibCompilerArguments : CommonCompilerArguments() {
6868
field = value
6969
}
7070

71-
@Argument(
72-
value = "-Xcompile-builtins-as-part-of-stdlib",
73-
description = "Enable behaviour needed to compile builtins as part of JVM stdlib"
74-
)
75-
var expectBuiltinsAsPartOfStdlib = false
76-
set(value) {
77-
checkFrozen()
78-
field = value
79-
}
80-
81-
8271
@Argument(value = "-no-jdk", description = "Don't automatically include the Java runtime in the classpath.")
8372
var noJdk = false
8473
set(value) {

0 commit comments

Comments
 (0)