Skip to content

Commit

Permalink
Try to set free compile args for all projects by default
Browse files Browse the repository at this point in the history
  • Loading branch information
trueangle committed Oct 5, 2024
1 parent 764e752 commit 15194e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lambda-runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kotlin {

@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
freeCompilerArgs.addAll(listOf("-Xallocator=std", "-Xruntime-logs=gc=info"))
freeCompilerArgs.addAll(listOf("-Xallocator=std"))
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {
it.binaries {
executable {
entryPoint = "com.github.trueangle.knative.lambda.runtime.sample.main"
freeCompilerArgs += listOf("-Xallocator=std", "-Xruntime-logs=gc=info")
freeCompilerArgs += listOf("-Xallocator=std")
}
}
}
Expand Down

0 comments on commit 15194e5

Please sign in to comment.