Remove remnants of Alpine Linux workaround (#466)

This commit is contained in:
translatenix
2024-04-30 15:12:30 -07:00
committed by GitHub
parent ed1b317801
commit 5feaa2aaf7
2 changed files with 1 additions and 10 deletions

View File

@@ -289,12 +289,7 @@ val alpineExecutableAmd64: TaskProvider<Exec> by tasks.registering(Exec::class)
configureExecutable(
buildInfo.graalVmAmd64,
layout.buildDirectory.file("executable/pkl-alpine-linux-amd64"),
listOf(
"--static",
"--libc=musl",
"-H:CCompilerOption=-Wl,-z,stack-size=10485760",
"-Dorg.pkl.compat=alpine"
)
listOf("--static", "--libc=musl")
)
} else {
enabled = false

View File

@@ -40,7 +40,3 @@ fun cliMain(block: () -> Unit) {
exitProcess(1)
}
}
object CliMain {
val compat: String? = System.getProperty("org.pkl.compat")
}