mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
don't resolve dynamic linker for static executables
This commit is contained in:
parent
9741b2aab4
commit
cf699ee068
@ -7893,7 +7893,7 @@ static void init(CodeGen *g) {
|
||||
}
|
||||
|
||||
static void detect_dynamic_linker(CodeGen *g) {
|
||||
if (g->dynamic_linker_path != nullptr)
|
||||
if (g->dynamic_linker_path != nullptr || g->is_static)
|
||||
return;
|
||||
const char *standard_ld_path = target_dynamic_linker(g->zig_target);
|
||||
if (standard_ld_path == nullptr)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user