We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9c0351 commit c314fd4Copy full SHA for c314fd4
1 file changed
temporal-test-server/build.gradle
@@ -120,7 +120,9 @@ if (project.hasProperty("nativeBuild")) {
120
// If we're on linux, static link everything but libc. Otherwise link
121
// everything dynamically (note the '-' rather than '+' in front of
122
// StaticExecutable)
123
- buildArgs.add(isLinux() ? "-H:+StaticExecutableWithDynamicLibC": "-H:-StaticExecutable")
+ if (isLinux()) {
124
+ buildArgs.add("-H:+StaticExecutableWithDynamicLibC")
125
+ }
126
buildArgs.add("-H:+UnlockExperimentalVMOptions")
127
buildArgs.add("-O4")
128
0 commit comments