mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-20 00:18:53 +03:00
add option to strip build regardless of optimization (#3945)
adds the option "strip" which can be used to override the default strip setting, which is based on the optimization mode. Useful for a distro setting where you want a release build but still keep symbols. Also reuses the option for the shared and static library
This commit is contained in:
18
build.zig
18
build.zig
@ -158,6 +158,16 @@ pub fn build(b: *std.Build) !void {
|
|||||||
"Build a Position Independent Executable. Default true for system packages.",
|
"Build a Position Independent Executable. Default true for system packages.",
|
||||||
) orelse system_package;
|
) orelse system_package;
|
||||||
|
|
||||||
|
const strip = b.option(
|
||||||
|
bool,
|
||||||
|
"strip",
|
||||||
|
"Strip the final executable. Default true for fast and small releases",
|
||||||
|
) orelse switch (optimize) {
|
||||||
|
.Debug => false,
|
||||||
|
.ReleaseSafe => false,
|
||||||
|
.ReleaseFast, .ReleaseSmall => true,
|
||||||
|
};
|
||||||
|
|
||||||
const conformance = b.option(
|
const conformance = b.option(
|
||||||
[]const u8,
|
[]const u8,
|
||||||
"conformance",
|
"conformance",
|
||||||
@ -342,11 +352,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
.root_source_file = b.path("src/main.zig"),
|
.root_source_file = b.path("src/main.zig"),
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
.strip = switch (optimize) {
|
.strip = strip,
|
||||||
.Debug => false,
|
|
||||||
.ReleaseSafe => false,
|
|
||||||
.ReleaseFast, .ReleaseSmall => true,
|
|
||||||
},
|
|
||||||
}) else null;
|
}) else null;
|
||||||
|
|
||||||
// Exe
|
// Exe
|
||||||
@ -690,6 +696,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
.root_source_file = b.path("src/main_c.zig"),
|
.root_source_file = b.path("src/main_c.zig"),
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
.target = target,
|
.target = target,
|
||||||
|
.strip = strip,
|
||||||
});
|
});
|
||||||
_ = try addDeps(b, lib, config);
|
_ = try addDeps(b, lib, config);
|
||||||
|
|
||||||
@ -707,6 +714,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
.root_source_file = b.path("src/main_c.zig"),
|
.root_source_file = b.path("src/main_c.zig"),
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
.target = target,
|
.target = target,
|
||||||
|
.strip = strip,
|
||||||
});
|
});
|
||||||
_ = try addDeps(b, lib, config);
|
_ = try addDeps(b, lib, config);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user