-
Notifications
You must be signed in to change notification settings - Fork 56
/
build.zig
274 lines (243 loc) · 12 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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
const std = @import("std");
const Build = std.Build;
const GenerateDef = @import("build/GenerateDef.zig");
const aro_version = std.SemanticVersion{
.major = 0,
.minor = 0,
.patch = 0,
};
fn addFuzzStep(b: *Build, target: std.Build.ResolvedTarget, afl_clang_lto_path: []const u8, aro_module: *std.Build.Module) !void {
const fuzz_step = b.step("fuzz", "Build executable for fuzz testing.");
const fuzz_lib = b.addStaticLibrary(.{
.name = "fuzz-lib",
.root_source_file = b.path("test/fuzz/fuzz_lib.zig"),
.optimize = .Debug,
.target = target,
.single_threaded = true,
});
fuzz_lib.want_lto = true;
fuzz_lib.bundle_compiler_rt = true;
fuzz_lib.pie = true;
fuzz_lib.root_module.addImport("aro", aro_module);
const fuzz_compile = b.addSystemCommand(&.{afl_clang_lto_path});
fuzz_compile.addFileArg(b.path("test/fuzz/main.c"));
fuzz_compile.addArg("-o");
const fuzz_exe = fuzz_compile.addOutputFileArg("arofuzz");
const fuzz_install = b.addInstallBinFile(fuzz_exe, "arofuzz");
fuzz_compile.addArtifactArg(fuzz_lib);
fuzz_step.dependOn(&fuzz_install.step);
}
pub fn build(b: *Build) !void {
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
// means any target is allowed, and the default is native. Other options
// for restricting supported target set are available.
const target = b.standardTargetOptions(.{});
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardOptimizeOption(.{});
const afl_clang_lto_path = b.option([]const u8, "afl-clang-lto-path", "Path to afl-clang-lto") orelse "afl-clang-lto";
const enable_linker_build_id = b.option(bool, "enable-linker-build-id", "pass --build-id to linker") orelse false;
const default_linker = b.option([]const u8, "default-linker", "Default linker aro will use if none is supplied via -fuse-ld") orelse "ld";
const default_sysroot = b.option([]const u8, "default-sysroot", "Default <path> to all compiler invocations for --sysroot=<path>.") orelse "";
const gcc_install_prefix = b.option([]const u8, "gcc-install-prefix", "Directory where gcc is installed.") orelse "";
const default_rtlib = b.option([]const u8, "default-rtlib", "Default compiler runtime library if --rtlib is not specified") orelse "";
const default_unwindlib = b.option([]const u8, "default-unwindlib", "Default unwind library to use (\"none\" \"libgcc\" or \"libunwind\", empty to match runtime library.)") orelse
if (std.mem.eql(u8, default_rtlib, "libgcc")) "libgcc" else "";
const test_all_allocation_failures = b.option(bool, "test-all-allocation-failures", "Test all allocation failures") orelse false;
const link_libc = b.option(bool, "link-libc", "Force self-hosted compiler to link libc") orelse (mode != .Debug);
const tracy = b.option([]const u8, "tracy", "Enable Tracy integration. Supply path to Tracy source");
const tracy_callstack = b.option(bool, "tracy-callstack", "Include callstack information with Tracy data. Does nothing if -Dtracy is not provided") orelse false;
const tracy_allocation = b.option(bool, "tracy-allocation", "Include allocation information with Tracy data. Does nothing if -Dtracy is not provided") orelse false;
const use_llvm = b.option(bool, "llvm", "Use LLVM backend to generate aro executable");
const system_defaults = b.addOptions();
system_defaults.addOption(bool, "enable_linker_build_id", enable_linker_build_id);
system_defaults.addOption([]const u8, "linker", default_linker);
system_defaults.addOption([]const u8, "sysroot", default_sysroot);
system_defaults.addOption([]const u8, "gcc_install_prefix", gcc_install_prefix);
system_defaults.addOption([]const u8, "rtlib", default_rtlib);
system_defaults.addOption([]const u8, "unwindlib", default_unwindlib);
const aro_options = b.addOptions();
aro_options.addOption(bool, "enable_tracy", tracy != null);
aro_options.addOption(bool, "enable_tracy_callstack", tracy_callstack);
aro_options.addOption(bool, "enable_tracy_allocation", tracy_allocation);
const version_str = v: {
const version_string = b.fmt("{d}.{d}.{d}", .{ aro_version.major, aro_version.minor, aro_version.patch });
var code: u8 = undefined;
const git_describe_untrimmed = b.runAllowFail(&[_][]const u8{
"git", "-C", b.build_root.path orelse ".", "describe", "--match", "*.*.*", "--tags",
}, &code, .Ignore) catch version_string;
const git_describe = std.mem.trim(u8, git_describe_untrimmed, " \n\r");
switch (std.mem.count(u8, git_describe, "-")) {
0 => {
// Tagged release version (e.g. 0.10.0).
if (!std.mem.eql(u8, git_describe, version_string)) {
std.debug.print("Aro version '{s}' does not match Git tag '{s}'\n", .{ version_string, git_describe });
std.process.exit(1);
}
break :v version_string;
},
2 => {
// Untagged development build (e.g. 0.10.0-dev.2025+ecf0050a9).
var it = std.mem.splitScalar(u8, git_describe, '-');
const tagged_ancestor = it.first();
const commit_height = it.next().?;
const commit_id = it.next().?;
const ancestor_ver = try std.SemanticVersion.parse(tagged_ancestor);
if (!aro_version.order(ancestor_ver).compare(.gte)) {
std.debug.print("Aro version '{}' must be greater than tagged ancestor '{}'\n", .{ aro_version, ancestor_ver });
std.process.exit(1);
}
// Check that the commit hash is prefixed with a 'g' (a Git convention).
if (commit_id.len < 1 or commit_id[0] != 'g') {
std.debug.print("Unexpected `git describe` output: {s}\n", .{git_describe});
break :v version_string;
}
// The version is reformatted in accordance with the https://semver.org specification.
break :v b.fmt("{s}-dev.{s}+{s}", .{ version_string, commit_height, commit_id[1..] });
},
else => {
std.debug.print("Unexpected `git describe` output: {s}\n", .{git_describe});
break :v version_string;
},
}
};
aro_options.addOption([]const u8, "version_str", version_str);
const aro_options_module = aro_options.createModule();
const zig_module = b.createModule(.{
.root_source_file = b.path("deps/zig/lib.zig"),
});
const aro_backend = b.addModule("aro_backend", .{
.root_source_file = b.path("src/backend.zig"),
.imports = &.{
.{
.name = "zig",
.module = zig_module,
},
.{
.name = "build_options",
.module = aro_options_module,
},
},
});
const aro_module = b.addModule("aro", .{
.root_source_file = b.path("src/aro.zig"),
.imports = &.{
.{
.name = "system_defaults",
.module = system_defaults.createModule(),
},
.{
.name = "build_options",
.module = aro_options_module,
},
.{
.name = "backend",
.module = aro_backend,
},
GenerateDef.create(b, .{ .name = "Builtins/Builtin.def", .needs_large_dafsa_node = true }),
GenerateDef.create(b, .{ .name = "Attribute/names.def" }),
GenerateDef.create(b, .{ .name = "Diagnostics/messages.def", .kind = .named }),
},
});
const assembly_backend = b.addModule("assembly_backend", .{
.root_source_file = b.path("src/assembly_backend.zig"),
.imports = &.{
.{
.name = "aro",
.module = aro_module,
},
},
});
b.installDirectory(.{
.source_dir = b.path("include"),
.install_dir = .prefix,
.install_subdir = "include",
});
const exe = b.addExecutable(.{
.name = "arocc",
.root_source_file = b.path("src/main.zig"),
.optimize = mode,
.target = target,
.single_threaded = true,
.use_llvm = use_llvm,
.use_lld = use_llvm,
});
exe.root_module.addImport("aro", aro_module);
exe.root_module.addImport("assembly_backend", assembly_backend);
// tracy integration
if (tracy) |tracy_path| {
const client_cpp = std.fs.path.join(
b.allocator,
&[_][]const u8{ tracy_path, "TracyClient.cpp" },
) catch unreachable;
// On mingw, we need to opt into windows 7+ to get some features required by tracy.
const tracy_c_flags: []const []const u8 = if (target.result.isMinGW())
&[_][]const u8{ "-DTRACY_ENABLE=1", "-fno-sanitize=undefined", "-D_WIN32_WINNT=0x601" }
else
&[_][]const u8{ "-DTRACY_ENABLE=1", "-fno-sanitize=undefined" };
exe.addIncludePath(b.path(tracy_path));
exe.addCSourceFile(.{ .file = b.path(client_cpp), .flags = tracy_c_flags });
exe.linkLibCpp();
exe.linkLibC();
if (target.result.os.tag == .windows) {
exe.linkSystemLibrary("dbghelp");
exe.linkSystemLibrary("ws2_32");
}
}
if (link_libc) {
exe.linkLibC();
}
b.installArtifact(exe);
const unit_tests_step = step: {
var unit_tests = b.addTest(.{ .root_source_file = b.path("src/aro.zig") });
for (aro_module.import_table.keys(), aro_module.import_table.values()) |name, module| {
unit_tests.root_module.addImport(name, module);
}
const run_test = b.addRunArtifact(unit_tests);
const unit_tests_step = b.step("test-unit", "Run unit tests");
unit_tests_step.dependOn(&run_test.step);
break :step unit_tests_step;
};
const integration_tests_step = step: {
const integration_tests = b.addExecutable(.{
.name = "test-runner",
.root_source_file = b.path("test/runner.zig"),
.optimize = mode,
.target = target,
.use_llvm = use_llvm,
.use_lld = use_llvm,
});
integration_tests.root_module.addImport("aro", aro_module);
const test_runner_options = b.addOptions();
integration_tests.root_module.addOptions("build_options", test_runner_options);
test_runner_options.addOption(bool, "test_all_allocation_failures", test_all_allocation_failures);
const integration_test_runner = b.addRunArtifact(integration_tests);
integration_test_runner.addArg(b.pathFromRoot("test/cases"));
integration_test_runner.addArg(b.graph.zig_exe);
const integration_tests_step = b.step("test-integration", "Run integration tests");
integration_tests_step.dependOn(&integration_test_runner.step);
break :step integration_tests_step;
};
const record_tests_step = step: {
const record_tests = b.addExecutable(.{
.name = "record-runner",
.root_source_file = b.path("test/record_runner.zig"),
.optimize = mode,
.target = target,
.use_llvm = use_llvm,
.use_lld = use_llvm,
});
record_tests.root_module.addImport("aro", aro_module);
const record_tests_runner = b.addRunArtifact(record_tests);
record_tests_runner.addArg(b.pathFromRoot("test/records"));
const record_tests_step = b.step("test-record", "Run record layout tests");
record_tests_step.dependOn(&record_tests_runner.step);
break :step record_tests_step;
};
const tests_step = b.step("test", "Run all tests");
tests_step.dependOn(unit_tests_step);
tests_step.dependOn(integration_tests_step);
tests_step.dependOn(record_tests_step);
try addFuzzStep(b, target, afl_clang_lto_path, aro_module);
}