-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.zig
More file actions
131 lines (110 loc) · 3.97 KB
/
build.zig
File metadata and controls
131 lines (110 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
const std = @import("std");
const vendored_emacs_module_dir = "vendor";
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const is_release = optimize != .Debug;
const target_os = target.result.os.tag;
const emacs_module_dir = resolveEmacsModuleDir(b);
const ghostty_dep = b.dependency("ghostty", .{
.target = target,
.optimize = optimize,
.@"emit-lib-vt" = true,
});
const ghostty_lib = ghostty_dep.artifact("ghostty-vt-static");
const mod = b.createModule(.{
.root_source_file = b.path("src/module.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
.strip = if (is_release) true else null,
.omit_frame_pointer = if (is_release) true else null,
});
addModuleIncludes(mod, emacs_module_dir, ghostty_lib);
mod.linkLibrary(ghostty_lib);
const lib = b.addLibrary(.{
.name = "ghostel-module",
.linkage = .dynamic,
.root_module = mod,
});
if (is_release) {
lib.link_gc_sections = true;
lib.link_function_sections = true;
lib.link_data_sections = true;
lib.dead_strip_dylibs = true;
if (target_os == .linux) {
lib.setVersionScript(b.path("symbols.map"));
}
}
b.installArtifact(lib);
const copy_step = b.addInstallFile(
lib.getEmittedBin(),
moduleOutputName(target_os),
);
b.getInstallStep().dependOn(©_step.step);
}
fn addModuleIncludes(
mod: *std.Build.Module,
emacs_module_dir: std.Build.LazyPath,
ghostty_lib: *std.Build.Step.Compile,
) void {
mod.addSystemIncludePath(emacs_module_dir);
mod.addIncludePath(ghostty_lib.getEmittedIncludeTree());
}
fn resolveEmacsModuleDir(b: *std.Build) std.Build.LazyPath {
if (b.graph.env_map.get("EMACS_INCLUDE_DIR")) |dir| {
ensureEmacsModuleHeaderExists(b.allocator, "EMACS_INCLUDE_DIR", dir);
return .{ .cwd_relative = dir };
}
if (b.graph.env_map.get("EMACS_BIN_DIR")) |bin_dir| {
const include_dir = resolveEmacsIncludeDirFromBin(b.allocator, bin_dir) orelse
std.debug.panic(
"EMACS_BIN_DIR={s} does not resolve to a directory containing emacs-module.h",
.{bin_dir},
);
return .{ .cwd_relative = include_dir };
}
return .{ .cwd_relative = vendored_emacs_module_dir };
}
fn resolveEmacsIncludeDirFromBin(
allocator: std.mem.Allocator,
bin_dir: []const u8,
) ?[]const u8 {
const include_dir = std.fs.path.join(allocator, &.{ bin_dir, "..", "include" }) catch
@panic("out of memory while resolving EMACS_BIN_DIR");
if (dirHasEmacsModuleHeader(allocator, include_dir)) {
return include_dir;
}
allocator.free(include_dir);
const share_include_dir = std.fs.path.join(
allocator,
&.{ bin_dir, "..", "share", "emacs", "include" },
) catch @panic("out of memory while resolving EMACS_BIN_DIR");
if (dirHasEmacsModuleHeader(allocator, share_include_dir)) {
return share_include_dir;
}
allocator.free(share_include_dir);
return null;
}
fn ensureEmacsModuleHeaderExists(
allocator: std.mem.Allocator,
env_name: []const u8,
dir: []const u8,
) void {
if (!dirHasEmacsModuleHeader(allocator, dir)) {
std.debug.panic("{s}={s} does not contain emacs-module.h", .{ env_name, dir });
}
}
fn dirHasEmacsModuleHeader(allocator: std.mem.Allocator, dir: []const u8) bool {
const header_path = std.fs.path.join(allocator, &.{ dir, "emacs-module.h" }) catch
@panic("out of memory while resolving emacs-module.h");
defer allocator.free(header_path);
std.fs.cwd().access(header_path, .{}) catch return false;
return true;
}
fn moduleOutputName(target_os: std.Target.Os.Tag) []const u8 {
return switch (target_os) {
.macos => "../ghostel-module.dylib",
else => "../ghostel-module.so",
};
}