mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
follow filesystem hierarchy standard when adding lib directories
This commit is contained in:
parent
8dc58a4e94
commit
2148336a81
@ -88,6 +88,7 @@ pub const NativePaths = struct {
|
||||
|
||||
if (!is_windows) {
|
||||
const triple = try Target.current.linuxTriple(allocator);
|
||||
const qual = Target.current.cpu.arch.ptrBitWidth();
|
||||
|
||||
// TODO: $ ld --verbose | grep SEARCH_DIR
|
||||
// the output contains some paths that end with lib64, maybe include them too?
|
||||
@ -95,17 +96,17 @@ pub const NativePaths = struct {
|
||||
// TODO: some of these are suspect and should only be added on some systems. audit needed.
|
||||
|
||||
try self.addIncludeDir("/usr/local/include");
|
||||
try self.addLibDirFmt("/usr/local/lib{}", .{qual});
|
||||
try self.addLibDir("/usr/local/lib");
|
||||
try self.addLibDir("/usr/local/lib64");
|
||||
|
||||
try self.addIncludeDirFmt("/usr/include/{}", .{triple});
|
||||
try self.addLibDirFmt("/usr/lib/{}", .{triple});
|
||||
|
||||
try self.addIncludeDir("/usr/include");
|
||||
try self.addLibDirFmt("/lib{}", .{qual});
|
||||
try self.addLibDir("/lib");
|
||||
try self.addLibDir("/lib64");
|
||||
try self.addLibDirFmt("/usr/lib{}", .{qual});
|
||||
try self.addLibDir("/usr/lib");
|
||||
try self.addLibDir("/usr/lib64");
|
||||
|
||||
// example: on a 64-bit debian-based linux distro, with zlib installed from apt:
|
||||
// zlib.h is in /usr/include (added above)
|
||||
|
Loading…
Reference in New Issue
Block a user