mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Fix dependsOnSystemLibrary compile error
This commit is contained in:
parent
b5a2487f7a
commit
23facb6a16
1 changed files with 3 additions and 3 deletions
|
|
@ -601,7 +601,7 @@ pub fn forceUndefinedSymbol(compile: *Compile, symbol_name: []const u8) void {
|
||||||
|
|
||||||
/// Returns whether the library, executable, or object depends on a particular system library.
|
/// Returns whether the library, executable, or object depends on a particular system library.
|
||||||
/// Includes transitive dependencies.
|
/// Includes transitive dependencies.
|
||||||
pub fn dependsOnSystemLibrary(compile: *const Compile, name: []const u8) bool {
|
pub fn dependsOnSystemLibrary(compile: *Compile, name: []const u8) bool {
|
||||||
var is_linking_libc = false;
|
var is_linking_libc = false;
|
||||||
var is_linking_libcpp = false;
|
var is_linking_libcpp = false;
|
||||||
|
|
||||||
|
|
@ -613,8 +613,8 @@ pub fn dependsOnSystemLibrary(compile: *const Compile, name: []const u8) bool {
|
||||||
else => {},
|
else => {},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (mod.link_libc) is_linking_libc = true;
|
if (mod.link_libc orelse false) is_linking_libc = true;
|
||||||
if (mod.link_libcpp) is_linking_libcpp = true;
|
if (mod.link_libcpp orelse false) is_linking_libcpp = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue