commit a794287573a84f04f675efeb3278ebc00755a57b (tree)
parent 02097dff7049cecb16e301d37cd270159ef0f371
Author: linus <mail@linusgroh.de>
Date: Sun, 3 May 2026 21:04:54 +0200
Merge pull request 'std.zig.LibCInstallation: Add support for serenity' (#32172) from linus/zig:more-serenity into master
Reviewed-on: https://codeberg.org/ziglang/zig/pulls/32172
Reviewed-by: Alex Rønne Petersen <alex@alexrp.com>
Diffstat:
2 files changed, 27 insertions(+), 6 deletions(-)
diff --git a/lib/std/zig/LibCInstallation.zig b/lib/std/zig/LibCInstallation.zig
@@ -5,6 +5,7 @@ const builtin = @import("builtin");
const is_darwin = builtin.target.os.tag.isDarwin();
const is_windows = builtin.target.os.tag == .windows;
const is_haiku = builtin.target.os.tag == .haiku;
+const is_serenity = builtin.target.os.tag == .serenity;
const std = @import("std");
const Io = std.Io;
@@ -112,7 +113,7 @@ pub fn parse(allocator: Allocator, io: Io, libc_file: []const u8, target: *const
return error.ParseError;
}
- if (self.gcc_dir == null and os_tag == .haiku) {
+ if (self.gcc_dir == null and (os_tag == .haiku or os_tag == .serenity)) {
log.err("gcc_dir may not be empty for {s}", .{@tagName(os_tag)});
return error.ParseError;
}
@@ -207,8 +208,12 @@ pub fn findNative(gpa: Allocator, io: Io, args: FindNativeOptions) FindError!Lib
try self.findNativeCrtDirWindows(gpa, io, args.target, sdk);
} else if (is_haiku) {
try self.findNativeIncludeDirPosix(gpa, io, args);
- try self.findNativeGccDirHaiku(gpa, io, args);
+ try self.findNativeGccDirPosix(gpa, io, args);
self.crt_dir = try gpa.dupe(u8, "/system/develop/lib");
+ } else if (is_serenity) {
+ try self.findNativeIncludeDirPosix(gpa, io, args);
+ try self.findNativeGccDirPosix(gpa, io, args);
+ self.crt_dir = try gpa.dupe(u8, "/usr/lib");
} else if (builtin.target.os.tag == .illumos) {
// There is only one libc, and its headers/libraries are always in the same spot.
self.include_dir = try gpa.dupe(u8, "/usr/include");
@@ -314,7 +319,7 @@ fn findNativeIncludeDirPosix(self: *LibCInstallation, gpa: Allocator, io: Io, ar
const include_dir_example_file = if (is_haiku) "posix/stdlib.h" else "stdlib.h";
const sys_include_dir_example_file = if (is_windows)
"sys\\types.h"
- else if (is_haiku)
+ else if (is_haiku or is_serenity)
"errno.h"
else
"sys/errno.h";
@@ -457,7 +462,7 @@ fn findNativeCrtDirPosix(self: *LibCInstallation, gpa: Allocator, io: Io, args:
});
}
-fn findNativeGccDirHaiku(self: *LibCInstallation, gpa: Allocator, io: Io, args: FindNativeOptions) FindError!void {
+fn findNativeGccDirPosix(self: *LibCInstallation, gpa: Allocator, io: Io, args: FindNativeOptions) FindError!void {
self.gcc_dir = try ccPrintFileName(gpa, io, .{
.environ_map = args.environ_map,
.search_basename = "crtbeginS.o",
@@ -949,6 +954,22 @@ pub const CrtBasenames = struct {
},
.static_exe, .static_pie => .{},
},
+ .serenity => switch (mode) {
+ .dynamic_lib => .{
+ .crtbegin = "crtbeginS.o",
+ .crtend = "crtendS.o",
+ },
+ .dynamic_exe, .static_exe => .{
+ .crt0 = "crt0.o",
+ .crtbegin = "crtbegin.o",
+ .crtend = "crtend.o",
+ },
+ .dynamic_pie, .static_pie => .{
+ .crt0 = "crt0.o",
+ .crtbegin = "crtbeginS.o",
+ .crtend = "crtendS.o",
+ },
+ },
else => .{},
};
}
@@ -993,7 +1014,7 @@ pub fn resolveCrtPaths(
.crtn = if (crt_basenames.crtn) |basename| try crt_dir_path.join(arena, basename) else null,
};
},
- .haiku => {
+ .haiku, .serenity => {
const gcc_dir_path: Path = .{
.root_dir = std.Build.Cache.Directory.cwd(),
.sub_path = lci.gcc_dir orelse return error.LibCInstallationMissingCrtDir,
diff --git a/src/target.zig b/src/target.zig
@@ -85,7 +85,7 @@ pub fn supports_fpic(target: *const std.Target) bool {
pub fn defaultPie(target: *const std.Target) bool {
return switch (target.os.tag) {
- .openbsd => true,
+ .openbsd, .serenity => true,
else => target.os.tag.isDarwin(),
};
}