Skip to content

Commit

Permalink
chore: config update for jdk23
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshg committed Mar 12, 2024
1 parent f2faef6 commit 5e65506
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ graalvmNative {
add("--libc=musl")
// add("-H:CCompilerOption=-Wl,-z,stack-size=2097152")
}
else -> add("-H:+StaticExecutableWithDynamicLibC")
else -> {
// add("--static-nolibc")
add("-H:+StaticExecutableWithDynamicLibC")
}
}
add("-H:+StripDebugInfo")
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/native-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ case "$OSTYPE" in
linux*)
args+=("--static")
args+=("-H:+StripDebugInfo")
# args+=("-H:+StaticExecutableWithDynamicLibC")
# args+=("--static-nolibc")
# args+=("--libc=musl"
# "-H:CCompilerOption=-Wl,-z,stack-size=2097152")
;;
Expand Down

0 comments on commit 5e65506

Please sign in to comment.