-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
130 lines (106 loc) · 4.25 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
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
const std = @import("std");
// TODO: https://github.com/ziglang/zig/issues/14531
const version = std.SemanticVersion.parse("0.1.0-dev") catch unreachable;
const Options = struct {
linkage: ?std.builtin.LinkMode,
target: std.Build.ResolvedTarget,
optimize: std.builtin.OptimizeMode,
strip: ?bool,
code_model: std.builtin.CodeModel,
valgrind: ?bool,
};
pub fn build(b: *std.Build) anyerror!void {
const options: Options = .{
// TODO: https://github.com/ziglang/zig/pull/23239
.linkage = b.option(std.builtin.LinkMode, "linkage", "Link binaries statically or dynamically"),
.target = b.standardTargetOptions(.{}),
.optimize = b.standardOptimizeOption(.{}),
.strip = b.option(bool, "strip", "Omit debug information in binaries"),
.code_model = b.option(std.builtin.CodeModel, "code-model", "Assume a particular code model") orelse .default,
.valgrind = b.option(bool, "valgrind", "Enable Valgrind client requests"),
};
const install_tls = b.getInstallStep();
const check_tls = b.step("check", "Run source code checks");
const fmt_tls = b.step("fmt", "Fix source code formatting");
const test_tls = b.step("test", "Build and run tests");
const fmt_paths = &[_][]const u8{
"lib",
"build.zig",
"build.zig.zon",
};
check_tls.dependOn(&b.addFmt(.{
.paths = fmt_paths,
.check = true,
}).step);
check_tls.dependOn(&createLibrary(b, &options).step);
check_tls.dependOn(&createTest(b, &options).step);
fmt_tls.dependOn(&b.addFmt(.{
.paths = fmt_paths,
}).step);
_ = b.addModule("ap", .{
.root_source_file = b.path(b.pathJoin(&.{ "lib", "ap.zig" })),
// Inherit other options from consumers of the module.
});
const lib_step = createLibrary(b, &options);
// On Linux, undefined symbols are allowed in shared libraries by default; override that.
lib_step.linker_allow_shlib_undefined = false;
lib_step.installHeadersDirectory(b.path("inc"), "ap", .{});
b.installArtifact(lib_step);
install_tls.dependOn(
&b.addInstallLibFile(
b.addWriteFiles().add(
"libap.pc",
b.fmt(
\\prefix={s}
\\includedir=${{prefix}}/include/ap
\\libdir=${{prefix}}/lib
\\
\\Name: libap
\\Description: An arbitrary-precision numerics library, ported from LLVM to Zig with a C API.
\\URL: https://github.com/vezel-dev/libap
\\Version: {}
\\
\\Cflags: -I${{includedir}}
\\Libs: -L${{libdir}} -lap
, .{ b.install_prefix, version }),
),
b.pathJoin(&.{ "pkgconfig", "libap.pc" }),
).step,
);
b.installDirectory(.{
.source_dir = lib_step.getEmittedDocs(),
.install_dir = .prefix,
.install_subdir = b.pathJoin(&.{ "share", "doc", "libap", "html" }),
});
const run_test_step = b.addRunArtifact(createTest(b, &options));
// Always run tests when requested, even if the binary has not changed.
run_test_step.has_side_effects = true;
test_tls.dependOn(&run_test_step.step);
}
fn createModule(b: *std.Build, options: *const Options, paths: []const []const u8) *std.Build.Module {
return b.createModule(.{
.root_source_file = b.path(b.pathJoin(paths)),
.target = options.target,
.optimize = options.optimize,
.strip = options.strip,
.code_model = options.code_model,
.valgrind = options.valgrind,
});
}
fn createLibrary(b: *std.Build, options: *const Options) *std.Build.Step.Compile {
return b.addLibrary(.{
.linkage = options.linkage orelse .static,
.name = "ap",
.root_module = createModule(b, options, &.{ "lib", "c.zig" }),
.version = version,
});
}
fn createTest(b: *std.Build, options: *const Options) *std.Build.Step.Compile {
const step = b.addTest(.{
.name = "ap-test",
.root_module = createModule(b, options, &.{ "lib", "ap.zig" }),
});
step.linkage = options.linkage;
return step;
}