Compare commits

...

1 Commits

Author SHA1 Message Date
Marko Vejnovic
2b1bb70e8c fix: Long linux builds 2025-09-29 11:10:19 -07:00
2 changed files with 2 additions and 1 deletions

View File

@@ -600,6 +600,7 @@ fn configureObj(b: *Build, opts: *BunBuildOptions, obj: *Compile) void {
obj.root_module.strip = false; // stripped at the end
// https://github.com/ziglang/zig/issues/17430
obj.root_module.pic = true;
obj.no_link_obj = true;
// Object options
obj.use_llvm = !opts.no_llvm;

View File

@@ -20,7 +20,7 @@ else()
unsupported(CMAKE_SYSTEM_NAME)
endif()
set(ZIG_COMMIT "e0b7c318f318196c5f81fdf3423816a7b5bb3112")
set(ZIG_COMMIT "c3fc69b343b4fbe9f2842db7b940aa9399f5dbc8")
optionx(ZIG_TARGET STRING "The zig target to use" DEFAULT ${DEFAULT_ZIG_TARGET})
if(CMAKE_BUILD_TYPE STREQUAL "Release")