Skip to content

Commit c314fd4

Browse files
try again
1 parent c9c0351 commit c314fd4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

temporal-test-server/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ if (project.hasProperty("nativeBuild")) {
120120
// If we're on linux, static link everything but libc. Otherwise link
121121
// everything dynamically (note the '-' rather than '+' in front of
122122
// StaticExecutable)
123-
buildArgs.add(isLinux() ? "-H:+StaticExecutableWithDynamicLibC": "-H:-StaticExecutable")
123+
if (isLinux()) {
124+
buildArgs.add("-H:+StaticExecutableWithDynamicLibC")
125+
}
124126
buildArgs.add("-H:+UnlockExperimentalVMOptions")
125127
buildArgs.add("-O4")
126128

0 commit comments

Comments
 (0)