-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.zig
More file actions
137 lines (119 loc) · 4.72 KB
/
build.zig
File metadata and controls
137 lines (119 loc) · 4.72 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
132
133
134
135
136
137
// Copyright (c) 2021-2024, sin-ack <sin-ack@protonmail.com>
//
// Contains code from the ZLS project.
// Copyright (c) 2024, ZLS contributors
//
// SPDX-License-Identifier: GPL-3.0-only
const std = @import("std");
pub fn build(b: *std.Build) void {
// Options
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const enable_tracy = b.option(bool, "tracy", "Whether tracy should be enabled.") orelse false;
const enable_tracy_allocation = b.option(bool, "tracy-allocation", "Enable using TracyAllocator to monitor allocations.") orelse enable_tracy;
const enable_tracy_callstack = b.option(bool, "tracy-callstack", "Enable callstack graphs.") orelse enable_tracy;
// Modules
const tracy = getTracyModule(b, .{
.target = target,
.optimize = optimize,
.enable = enable_tracy,
.enable_allocation = enable_tracy_allocation,
.enable_callstack = enable_tracy_callstack,
});
const zigself = b.addModule("zigself", .{
.root_source_file = b.path("src/zigself.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
.imports = &.{
.{ .name = "tracy", .module = tracy },
},
});
const zig_args = b.dependency("zig-args", .{}).module("args");
// Steps
const exe = b.addExecutable(.{
.name = "self",
.root_module = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.optimize = optimize,
.target = target,
}),
// XXX: Native backend currently crashing due to Zig bug.
// https://github.com/ziglang/zig/issues/24364
.use_llvm = true,
});
exe.root_module.addImport("zigself", zigself);
exe.root_module.addImport("zig-args", zig_args);
exe.root_module.addImport("tracy", tracy);
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
var test_harness_exe = b.addExecutable(.{
.name = "self-test",
.root_module = b.createModule(.{
.root_source_file = b.path("tests/harness.zig"),
.target = target,
.optimize = optimize,
}),
});
test_harness_exe.root_module.addImport("zigself", zigself);
const test_harness_run_cmd = b.addRunArtifact(test_harness_exe);
if (b.args) |args| {
test_harness_run_cmd.addArgs(args);
}
test_harness_run_cmd.cwd = b.path(".");
const zig_tests = b.addTest(.{
.name = "Zig-based tests",
.root_module = zigself,
});
const zig_tests_run_cmd = b.addRunArtifact(zig_tests);
const test_step = b.step("test", "Run zigSelf tests");
test_step.dependOn(&test_harness_run_cmd.step);
test_step.dependOn(&zig_tests_run_cmd.step);
}
fn getTracyModule(
b: *std.Build,
options: struct {
target: std.Build.ResolvedTarget,
optimize: std.builtin.OptimizeMode,
enable: bool,
enable_allocation: bool,
enable_callstack: bool,
},
) *std.Build.Module {
const tracy_options = b.addOptions();
tracy_options.step.name = "tracy options";
tracy_options.addOption(bool, "enable", options.enable);
tracy_options.addOption(bool, "enable_allocation", options.enable and options.enable_allocation);
tracy_options.addOption(bool, "enable_callstack", options.enable and options.enable_callstack);
const tracy_module = b.addModule("tracy", .{
.root_source_file = b.path("src/utility/tracy.zig"),
.target = options.target,
.optimize = options.optimize,
});
tracy_module.addImport("options", tracy_options.createModule());
if (!options.enable) return tracy_module;
const tracy_dependency = b.lazyDependency("tracy", .{}) orelse return tracy_module;
tracy_module.link_libc = true;
tracy_module.link_libcpp = true;
// On mingw, we need to opt into windows 7+ to get some features required by tracy.
const tracy_c_flags: []const []const u8 = if (options.target.result.isMinGW())
&[_][]const u8{ "-DTRACY_ENABLE=1", "-fno-sanitize=undefined", "-D_WIN32_WINNT=0x601" }
else
&[_][]const u8{ "-DTRACY_ENABLE=1", "-fno-sanitize=undefined" };
tracy_module.addIncludePath(tracy_dependency.path(""));
tracy_module.addCSourceFile(.{
.file = tracy_dependency.path("public/TracyClient.cpp"),
.flags = tracy_c_flags,
});
if (options.target.result.os.tag == .windows) {
tracy_module.linkSystemLibrary("dbghelp", .{});
tracy_module.linkSystemLibrary("ws2_32", .{});
}
return tracy_module;
}