-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.zig
252 lines (220 loc) · 7.54 KB
/
build.zig
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
const builtin = @import("builtin");
const std = @import("std");
pub const emsdk_ver_major = "4";
pub const emsdk_ver_minor = "0";
pub const emsdk_ver_tiny = "3";
pub const emsdk_version = emsdk_ver_major ++ "." ++ emsdk_ver_minor ++ "." ++ emsdk_ver_tiny;
pub fn build(b: *std.Build) void {
_ = b.addModule("root", .{ .root_source_file = b.path("src/zemscripten.zig") });
}
pub fn emccPath(b: *std.Build) []const u8 {
return std.fs.path.join(b.allocator, &.{
b.dependency("emsdk", .{}).path("").getPath(b),
"upstream/emscripten/",
switch (builtin.target.os.tag) {
.windows => "emcc.bat",
else => "emcc",
},
}) catch unreachable;
}
pub fn emrunPath(b: *std.Build) []const u8 {
return std.fs.path.join(b.allocator, &.{
b.dependency("emsdk", .{}).path("").getPath(b),
"upstream/emscripten/",
switch (builtin.target.os.tag) {
.windows => "emrun.bat",
else => "emrun",
},
}) catch unreachable;
}
pub fn htmlPath(b: *std.Build) []const u8 {
return std.fs.path.join(b.allocator, &.{
b.dependency("emsdk", .{}).path("").getPath(b),
"upstream/emscripten/src/shell.html",
}) catch unreachable;
}
pub fn activateEmsdkStep(b: *std.Build) *std.Build.Step {
const emsdk_script_path = std.fs.path.join(b.allocator, &.{
b.dependency("emsdk", .{}).path("").getPath(b),
switch (builtin.target.os.tag) {
.windows => "emsdk.bat",
else => "emsdk",
},
}) catch unreachable;
var emsdk_install = b.addSystemCommand(&.{ emsdk_script_path, "install", emsdk_version });
switch (builtin.target.os.tag) {
.linux, .macos => {
emsdk_install.step.dependOn(&b.addSystemCommand(&.{ "chmod", "+x", emsdk_script_path }).step);
},
else => {},
}
var emsdk_activate = b.addSystemCommand(&.{ emsdk_script_path, "activate", emsdk_version });
emsdk_activate.step.dependOn(&emsdk_install.step);
const step = b.allocator.create(std.Build.Step) catch unreachable;
step.* = std.Build.Step.init(.{
.id = .custom,
.name = "Activate EMSDK",
.owner = b,
.makeFn = &struct {
fn make(_: *std.Build.Step, _: std.Build.Step.MakeOptions) anyerror!void {}
}.make,
});
switch (builtin.target.os.tag) {
.linux, .macos => {
const chmod_emcc = b.addSystemCommand(&.{ "chmod", "+x", emccPath(b) });
chmod_emcc.step.dependOn(&emsdk_activate.step);
const chmod_emrun = b.addSystemCommand(&.{ "chmod", "+x", emrunPath(b) });
chmod_emrun.step.dependOn(&emsdk_activate.step);
step.dependOn(&chmod_emcc.step);
step.dependOn(&chmod_emrun.step);
},
else => {},
}
return step;
}
pub const EmccFlags = std.StringHashMap(void);
pub fn emccDefaultFlags(allocator: std.mem.Allocator, optimize: std.builtin.OptimizeMode) EmccFlags {
var args = EmccFlags.init(allocator);
switch (optimize) {
.Debug => {
args.put("-gsource-map", {}) catch unreachable;
},
.ReleaseSmall, .ReleaseFast => {
args.put("-O3", {}) catch unreachable;
},
else => {},
}
return args;
}
pub const EmccSettings = std.StringHashMap([]const u8);
pub fn emccDefaultSettings(
allocator: std.mem.Allocator,
options: struct {
optimize: std.builtin.OptimizeMode,
emsdk_allocator: enum {
none,
dlmalloc,
emmalloc,
@"emmalloc-debug",
@"emmalloc-memvalidate",
@"emmalloc-verbose",
mimalloc,
} = .emmalloc,
shell_file: ?[]const u8 = null,
},
) EmccSettings {
var settings = EmccSettings.init(allocator);
switch (options.optimize) {
.Debug, .ReleaseSafe => {
settings.put("SAFE_HEAP", "1") catch unreachable;
settings.put("STACK_OVERFLOW_CHECK", "1") catch unreachable;
settings.put("ASSERTIONS", "1") catch unreachable;
},
else => {},
}
settings.put("USE_OFFSET_CONVERTER", "1") catch unreachable;
settings.put("MALLOC", @tagName(options.emsdk_allocator)) catch unreachable;
return settings;
}
pub const EmccFilePath = struct {
src_path: []const u8,
virtual_path: ?[]const u8 = null,
};
pub fn emccStep(
b: *std.Build,
wasm: *std.Build.Step.Compile,
options: struct {
optimize: std.builtin.OptimizeMode,
flags: EmccFlags,
settings: EmccSettings,
use_preload_plugins: bool = false,
embed_paths: ?[]const EmccFilePath = null,
preload_paths: ?[]const EmccFilePath = null,
shell_file_path: ?[]const u8 = null,
install_dir: std.Build.InstallDir,
},
) *std.Build.Step {
var emcc = b.addSystemCommand(&.{emccPath(b)});
var iterFlags = options.flags.iterator();
while (iterFlags.next()) |kvp| {
emcc.addArg(kvp.key_ptr.*);
}
var iterSettings = options.settings.iterator();
while (iterSettings.next()) |kvp| {
emcc.addArg(std.fmt.allocPrint(
b.allocator,
"-s{s}={s}",
.{ kvp.key_ptr.*, kvp.value_ptr.* },
) catch unreachable);
}
emcc.addArtifactArg(wasm);
{
for (wasm.root_module.getGraph().modules) |module| {
for (module.link_objects.items) |link_object| {
switch (link_object) {
.other_step => |compile_step| {
switch (compile_step.kind) {
.lib => {
emcc.addArtifactArg(compile_step);
},
else => {},
}
},
else => {},
}
}
}
}
emcc.addArg("-o");
const out_file = emcc.addOutputFileArg(b.fmt("{s}.html", .{wasm.name}));
if (options.use_preload_plugins) {
emcc.addArg("--use-preload-plugins");
}
if (options.embed_paths) |embed_paths| {
for (embed_paths) |path| {
const path_arg = if (path.virtual_path) |virtual_path|
std.fmt.allocPrint(
b.allocator,
"{s}@{s}",
.{ path.src_path, virtual_path },
) catch unreachable
else
path.src_path;
emcc.addArgs(&.{ "--embed-file", path_arg });
}
}
if (options.preload_paths) |preload_paths| {
for (preload_paths) |path| {
const path_arg = if (path.virtual_path) |virtual_path|
std.fmt.allocPrint(
b.allocator,
"{s}@{s}",
.{ path.src_path, virtual_path },
) catch unreachable
else
path.src_path;
emcc.addArgs(&.{ "--preload-file", path_arg });
}
}
if (options.shell_file_path) |shell_file_path| {
emcc.addArgs(&.{ "--shell-file", shell_file_path });
}
const install_step = b.addInstallDirectory(.{
.source_dir = out_file.dirname(),
.install_dir = options.install_dir,
.install_subdir = "",
});
install_step.step.dependOn(&emcc.step);
return &install_step.step;
}
pub fn emrunStep(
b: *std.Build,
html_path: []const u8,
extra_args: []const []const u8,
) *std.Build.Step {
var emrun = b.addSystemCommand(&.{emrunPath(b)});
emrun.addArgs(extra_args);
emrun.addArg(html_path);
// emrun.addArg("--");
return &emrun.step;
}