-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.zig
More file actions
533 lines (486 loc) · 21.8 KB
/
build.zig
File metadata and controls
533 lines (486 loc) · 21.8 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
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
const std = @import("std");
// Although this function looks imperative, it does not perform the build
// directly and instead it mutates the build graph (`b`) that will be then
// executed by an external runner. The functions in `std.Build` implement a DSL
// for defining build steps and express dependencies between them, allowing the
// build runner to parallelize the build automatically (and the cache system to
// know when a step doesn't need to be re-run).
pub fn build(b: *std.Build) void {
// Standard target options allow 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 optimization options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
// set a preferred release mode, allowing the user to decide how to optimize.
const optimize = b.standardOptimizeOption(.{});
// It's also possible to define more custom flags to toggle optional features
// of this build script using `b.option()`. All defined flags (including
// target and optimize options) will be listed when running `zig build --help`
// in this directory.
// This creates a module, which represents a collection of source files alongside
// some compilation options, such as optimization mode and linked system libraries.
// Zig modules are the preferred way of making Zig code available to consumers.
// addModule defines a module that we intend to make available for importing
// to our consumers. We must give it a name because a Zig package can expose
// multiple modules and consumers will need to be able to specify which
// module they want to access.
const mod = b.addModule("regex", .{
// The root source file is the "entry point" of this module. Users of
// this module will only be able to access public declarations contained
// in this file, which means that if you have declarations that you
// intend to expose to consumers that were defined in other files part
// of this module, you will have to make sure to re-export them from
// the root file.
.root_source_file = b.path("src/root.zig"),
// Later on we'll use this module as the root module of a test executable
// which requires us to specify a target.
.target = target,
});
// Here we define an executable. An executable needs to have a root module
// which needs to expose a `main` function. While we could add a main function
// to the module defined above, it's sometimes preferable to split business
// business logic and the CLI into two separate modules.
//
// If your goal is to create a Zig library for others to use, consider if
// it might benefit from also exposing a CLI tool. A parser library for a
// data serialization format could also bundle a CLI syntax checker, for example.
//
// If instead your goal is to create an executable, consider if users might
// be interested in also being able to embed the core functionality of your
// program in their own executable in order to avoid the overhead involved in
// subprocessing your CLI tool.
//
// If neither case applies to you, feel free to delete the declaration you
// don't need and to put everything under a single module.
const exe = b.addExecutable(.{
.name = "regex",
.root_module = b.createModule(.{
// b.createModule defines a new module just like b.addModule but,
// unlike b.addModule, it does not expose the module to consumers of
// this package, which is why in this case we don't have to give it a name.
.root_source_file = b.path("src/main.zig"),
// Target and optimization levels must be explicitly wired in when
// defining an executable or library (in the root module), and you
// can also hardcode a specific target for an executable or library
// definition if desireable (e.g. firmware for embedded devices).
.target = target,
.optimize = optimize,
// List of modules available for import in source files part of the
// root module.
.imports = &.{
// Here "regex" is the name you will use in your source code to
// import this module (e.g. `@import("regex")`). The name is
// repeated because you are allowed to rename your imports, which
// can be extremely useful in case of collisions (which can happen
// importing modules from different packages).
.{ .name = "regex", .module = mod },
},
}),
});
// This declares intent for the executable to be installed into the
// install prefix when running `zig build` (i.e. when executing the default
// step). By default the install prefix is `zig-out/` but can be overridden
// by passing `--prefix` or `-p`.
b.installArtifact(exe);
// This creates a top level step. Top level steps have a name and can be
// invoked by name when running `zig build` (e.g. `zig build run`).
// This will evaluate the `run` step rather than the default step.
// For a top level step to actually do something, it must depend on other
// steps (e.g. a Run step, as we will see in a moment).
const run_step = b.step("run", "Run the app");
// This creates a RunArtifact step in the build graph. A RunArtifact step
// invokes an executable compiled by Zig. Steps will only be executed by the
// runner if invoked directly by the user (in the case of top level steps)
// or if another step depends on it, so it's up to you to define when and
// how this Run step will be executed. In our case we want to run it when
// the user runs `zig build run`, so we create a dependency link.
const run_cmd = b.addRunArtifact(exe);
run_step.dependOn(&run_cmd.step);
// By making the run step depend on the default step, it will be run from the
// installation directory rather than directly from within the cache directory.
run_cmd.step.dependOn(b.getInstallStep());
// This allows the user to pass arguments to the application in the build
// command itself, like this: `zig build run -- arg1 arg2 etc`
if (b.args) |args| {
run_cmd.addArgs(args);
}
// Creates an executable that will run `test` blocks from the provided module.
// Here `mod` needs to define a target, which is why earlier we made sure to
// set the releative field.
const mod_tests = b.addTest(.{
.root_module = mod,
});
// c_api.zig uses std.heap.c_allocator which needs libc linked at
// test time (refAllDecls pulls it in even though lib users might not).
mod_tests.root_module.link_libc = true;
// A run step that will run the test executable.
const run_mod_tests = b.addRunArtifact(mod_tests);
// Creates an executable that will run `test` blocks from the executable's
// root module. Note that test executables only test one module at a time,
// hence why we have to create two separate ones.
const exe_tests = b.addTest(.{
.root_module = exe.root_module,
});
// A run step that will run the second test executable.
const run_exe_tests = b.addRunArtifact(exe_tests);
// Add additional test files
const case_insensitive_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/case_insensitive.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_case_insensitive_tests = b.addRunArtifact(case_insensitive_tests);
const integration_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/integration.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_integration_tests = b.addRunArtifact(integration_tests);
const posix_classes_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/posix_classes.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_posix_classes_tests = b.addRunArtifact(posix_classes_tests);
_ = run_posix_classes_tests; // Temporarily unused
const backreferences_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/backreferences.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_backreferences_tests = b.addRunArtifact(backreferences_tests);
const iterator_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/iterator.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_iterator_tests = b.addRunArtifact(iterator_tests);
const non_capturing_groups_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/non_capturing_groups.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_non_capturing_groups_tests = b.addRunArtifact(non_capturing_groups_tests);
const utf8_unicode_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/utf8_unicode.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_utf8_unicode_tests = b.addRunArtifact(utf8_unicode_tests);
const thread_safety_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/thread_safety.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_thread_safety_tests = b.addRunArtifact(thread_safety_tests);
const string_anchors_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/string_anchors.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_string_anchors_tests = b.addRunArtifact(string_anchors_tests);
const multiline_dotall_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/multiline_dotall.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_multiline_dotall_tests = b.addRunArtifact(multiline_dotall_tests);
const lazy_quantifiers_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/lazy_quantifiers.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_lazy_quantifiers_tests = b.addRunArtifact(lazy_quantifiers_tests);
const named_captures_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/named_captures.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_named_captures_tests = b.addRunArtifact(named_captures_tests);
const fuzz_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/fuzz.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_fuzz_tests = b.addRunArtifact(fuzz_tests);
_ = run_fuzz_tests; // Temporarily unused
// A top level step for running all tests. dependOn can be called multiple
// times and since the two run steps do not depend on one another, this will
// make the two of them run in parallel.
const test_step = b.step("test", "Run tests");
test_step.dependOn(&run_mod_tests.step);
test_step.dependOn(&run_exe_tests.step);
test_step.dependOn(&run_case_insensitive_tests.step);
test_step.dependOn(&run_integration_tests.step);
// Temporarily disabled - POSIX parsing needs redesign
// test_step.dependOn(&run_posix_classes_tests.step);
test_step.dependOn(&run_backreferences_tests.step);
test_step.dependOn(&run_iterator_tests.step);
test_step.dependOn(&run_non_capturing_groups_tests.step);
test_step.dependOn(&run_utf8_unicode_tests.step);
test_step.dependOn(&run_thread_safety_tests.step);
test_step.dependOn(&run_string_anchors_tests.step);
test_step.dependOn(&run_multiline_dotall_tests.step);
test_step.dependOn(&run_named_captures_tests.step);
test_step.dependOn(&run_lazy_quantifiers_tests.step);
// Temporarily disabled - fuzz tests need refinement
// test_step.dependOn(&run_fuzz_tests.step);
// Regression tests for specific fixes
const regression_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/regression.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_regression_tests = b.addRunArtifact(regression_tests);
test_step.dependOn(&run_regression_tests.step);
// Stress and edge case tests
const stress_edge_cases_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/stress_edge_cases.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_stress_edge_cases_tests = b.addRunArtifact(stress_edge_cases_tests);
test_step.dependOn(&run_stress_edge_cases_tests.step);
// Advanced feature edge cases
const advanced_edge_cases_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/advanced_edge_cases.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_advanced_edge_cases_tests = b.addRunArtifact(advanced_edge_cases_tests);
test_step.dependOn(&run_advanced_edge_cases_tests.step);
// Parser and compiler edge cases
const parser_compiler_edge_cases_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("tests/parser_compiler_edge_cases.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
const run_parser_compiler_edge_cases_tests = b.addRunArtifact(parser_compiler_edge_cases_tests);
test_step.dependOn(&run_parser_compiler_edge_cases_tests.step);
// Just like flags, top level steps are also listed in the `--help` menu.
//
// The Zig build system is entirely implemented in userland, which means
// that it cannot hook into private compiler APIs. All compilation work
// orchestrated by the build system will result in other Zig compiler
// subcommands being invoked with the right flags defined. You can observe
// these invocations when one fails (or you pass a flag to increase
// verbosity) to validate assumptions and diagnose problems.
//
// Lastly, the Zig build system is relatively simple and self-contained,
// and reading its source code will allow you to master it.
// Add example executable
const example = b.addExecutable(.{
.name = "basic_example",
.root_module = b.createModule(.{
.root_source_file = b.path("examples/basic.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(example);
const example_run = b.addRunArtifact(example);
const example_step = b.step("example", "Run the basic example");
example_step.dependOn(&example_run.step);
// Add benchmark executable
const benchmark = b.addExecutable(.{
.name = "benchmarks",
.root_module = b.createModule(.{
.root_source_file = b.path("benchmarks/simple.zig"),
.target = target,
.optimize = .ReleaseFast,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(benchmark);
const benchmark_run = b.addRunArtifact(benchmark);
const benchmark_step = b.step("bench", "Run benchmarks");
benchmark_step.dependOn(&benchmark_run.step);
// Add prefix optimization benchmark executable
const prefix_bench = b.addExecutable(.{
.name = "prefix_benchmarks",
.root_module = b.createModule(.{
.root_source_file = b.path("benchmarks/prefix_optimization.zig"),
.target = target,
.optimize = .ReleaseFast,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(prefix_bench);
const prefix_bench_run = b.addRunArtifact(prefix_bench);
const prefix_bench_step = b.step("bench-prefix", "Run prefix optimization benchmarks");
prefix_bench_step.dependOn(&prefix_bench_run.step);
// Add debug visualization example
const debug_example = b.addExecutable(.{
.name = "debug_visualization",
.root_module = b.createModule(.{
.root_source_file = b.path("examples/debug_visualization.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(debug_example);
const debug_example_run = b.addRunArtifact(debug_example);
const debug_example_step = b.step("debug-example", "Run debug and visualization examples");
debug_example_step.dependOn(&debug_example_run.step);
// Add error handling example
const error_example = b.addExecutable(.{
.name = "error_handling",
.root_module = b.createModule(.{
.root_source_file = b.path("examples/error_handling.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(error_example);
const error_example_run = b.addRunArtifact(error_example);
const error_example_step = b.step("error-example", "Run error handling examples");
error_example_step.dependOn(&error_example_run.step);
// Add profiling example
const profiling_example = b.addExecutable(.{
.name = "profiling_example",
.root_module = b.createModule(.{
.root_source_file = b.path("examples/profiling_example.zig"),
.target = target,
.optimize = .ReleaseFast,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(profiling_example);
const profiling_example_run = b.addRunArtifact(profiling_example);
const profiling_example_step = b.step("profiling-example", "Run profiling examples");
profiling_example_step.dependOn(&profiling_example_run.step);
// Add thread safety example
const thread_safety_example = b.addExecutable(.{
.name = "thread_safety_example",
.root_module = b.createModule(.{
.root_source_file = b.path("examples/thread_safety.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(thread_safety_example);
const thread_safety_example_run = b.addRunArtifact(thread_safety_example);
const thread_safety_example_step = b.step("thread-safety-example", "Run thread safety examples");
thread_safety_example_step.dependOn(&thread_safety_example_run.step);
// Add advanced features example
const advanced_example = b.addExecutable(.{
.name = "advanced_features",
.root_module = b.createModule(.{
.root_source_file = b.path("examples/advanced_features.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "regex", .module = mod },
},
}),
});
b.installArtifact(advanced_example);
const advanced_example_run = b.addRunArtifact(advanced_example);
const advanced_example_step = b.step("advanced-example", "Run advanced features examples");
advanced_example_step.dependOn(&advanced_example_run.step);
}