-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathbuild.zig
283 lines (242 loc) · 10.1 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
275
276
277
278
279
280
281
282
283
const std = @import("std");
const builtin = @import("builtin");
const Step = std.Build.Step;
const ResolvedTarget = std.Build.ResolvedTarget;
const Query = std.Target.Query;
fn getTarget(original_target: ResolvedTarget) ResolvedTarget {
var tmp = original_target;
if (tmp.result.isGnuLibC()) {
const min_glibc_version = std.SemanticVersion{
.major = 2,
.minor = 28,
.patch = 0,
};
const ver = tmp.result.os.version_range.linux.glibc;
if (ver.order(min_glibc_version) == .lt) {
std.debug.panic("sqlite requires glibc version >= 2.28", .{});
}
}
return tmp;
}
const TestTarget = struct {
query: Query,
single_threaded: bool = false,
};
const ci_targets = switch (builtin.target.cpu.arch) {
.x86_64 => switch (builtin.target.os.tag) {
.linux => [_]TestTarget{
TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .aarch64, .abi = .musl } },
},
.windows => [_]TestTarget{
TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .gnu } },
// Disabled due to https://github.com/ziglang/zig/issues/20047
// TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .gnu } },
},
.macos => [_]TestTarget{
TestTarget{ .query = .{ .cpu_arch = .x86_64 } },
},
else => [_]TestTarget{},
},
else => [_]TestTarget{},
};
const all_test_targets = switch (builtin.target.cpu.arch) {
.x86_64 => switch (builtin.target.os.tag) {
.linux => [_]TestTarget{
TestTarget{ .query = .{} },
TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .aarch64, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .riscv64, .abi = .musl } },
// Disabled because it fails for some unknown reason
// TestTarget{ .query = .{ .cpu_arch = .mips, .abi = .musl } },
TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .windows } },
// Disabled due to https://github.com/ziglang/zig/issues/20047
// TestTarget{ .query = .{ .cpu_arch = .x86, .os_tag = .windows } },
TestTarget{ .query = .{ .cpu_arch = .x86_64, .os_tag = .macos } },
TestTarget{ .query = .{ .cpu_arch = .aarch64, .os_tag = .macos } },
},
.windows => [_]TestTarget{
TestTarget{ .query = .{ .cpu_arch = .x86_64, .abi = .gnu } },
// Disabled due to https://github.com/ziglang/zig/issues/20047
// TestTarget{ .query = .{ .cpu_arch = .x86, .abi = .gnu } },
},
.freebsd => [_]TestTarget{
TestTarget{ .query = .{} },
TestTarget{ .query = .{ .cpu_arch = .x86_64 } },
},
.macos => [_]TestTarget{
TestTarget{ .query = .{ .cpu_arch = .x86_64 } },
},
else => [_]TestTarget{
TestTarget{ .query = .{} },
},
},
.aarch64 => switch (builtin.target.os.tag) {
.linux, .windows, .freebsd, .macos => [_]TestTarget{
TestTarget{ .query = .{} },
},
else => [_]TestTarget{
TestTarget{ .query = .{} },
},
},
else => [_]TestTarget{
TestTarget{ .query = .{} },
},
};
fn computeTestTargets(isNative: bool, ci: ?bool) ?[]const TestTarget {
if (ci != null and ci.?) return &ci_targets;
if (isNative) {
// If the target is native we assume the user didn't change it with -Dtarget and run all test targets.
return &all_test_targets;
}
// Otherwise we run a single test target.
return null;
}
pub fn build(b: *std.Build) !void {
const in_memory = b.option(bool, "in_memory", "Should the tests run with sqlite in memory (default true)") orelse true;
const dbfile = b.option([]const u8, "dbfile", "Always use this database file instead of a temporary one");
const ci = b.option(bool, "ci", "Build and test in the CI on GitHub");
const query = b.standardTargetOptionsQueryOnly(.{});
const target = b.resolveTargetQuery(query);
const optimize = b.standardOptimizeOption(.{});
var flags = std.ArrayList([]const u8).init(b.allocator);
defer flags.deinit();
try flags.append("-std=c99");
inline for (std.meta.fields(EnableOptions)) |field| {
const opt = b.option(bool, field.name, "Enable " ++ field.name) orelse field.defaultValue().?;
if (opt) {
var buf: [field.name.len]u8 = undefined;
const name = std.ascii.upperString(&buf, field.name);
const flag = try std.fmt.allocPrint(b.allocator, "-DSQLITE_ENABLE_{s}", .{name});
try flags.append(flag);
}
}
const c_flags = flags.items;
const sqlite_lib = b.addStaticLibrary(.{
.name = "sqlite",
.target = target,
.optimize = optimize,
});
sqlite_lib.addIncludePath(b.path("c/"));
sqlite_lib.addCSourceFiles(.{
.files = &[_][]const u8{
"c/sqlite3.c",
"c/workaround.c",
},
.flags = c_flags,
});
sqlite_lib.linkLibC();
sqlite_lib.installHeader(b.path("c/sqlite3.h"), "sqlite3.h");
b.installArtifact(sqlite_lib);
// Create the public 'sqlite' module to be exported
const sqlite_mod = b.addModule("sqlite", .{
.root_source_file = b.path("sqlite.zig"),
.link_libc = true,
});
sqlite_mod.addIncludePath(b.path("c/"));
sqlite_mod.linkLibrary(sqlite_lib);
// Tool to preprocess the sqlite header files.
//
// Due to limitations of translate-c the standard header files can't be used for building loadable extensions
// so we have this tool which creates usable header files.
const preprocess_files_tool = b.addExecutable(.{
.name = "preprocess-files",
.root_source_file = b.path("tools/preprocess_files.zig"),
.target = getTarget(target),
.optimize = optimize,
});
// Add a top-level step to run the preprocess-files tool
const preprocess_files_run = b.step("preprocess-files", "Run the preprocess-files tool");
const preprocess_files_tool_run = b.addRunArtifact(preprocess_files_tool);
preprocess_files_run.dependOn(&preprocess_files_tool_run.step);
const test_targets = computeTestTargets(query.isNative(), ci) orelse &[_]TestTarget{.{
.query = query,
}};
const test_step = b.step("test", "Run library tests");
// By default the tests will only be execute for native test targets, however they will be compiled
// for _all_ targets defined in `test_targets`.
//
// If you want to execute tests for other targets you can pass -fqemu, -fdarling, -fwine, -frosetta.
for (test_targets) |test_target| {
const cross_target = getTarget(b.resolveTargetQuery(test_target.query));
const single_threaded_txt = if (test_target.single_threaded) "single" else "multi";
const test_name = b.fmt("{s}-{s}-{s}", .{
try cross_target.result.zigTriple(b.allocator),
@tagName(optimize),
single_threaded_txt,
});
const test_sqlite_lib = b.addStaticLibrary(.{
.name = "sqlite",
.target = cross_target,
.optimize = optimize,
});
test_sqlite_lib.addCSourceFiles(.{
.files = &[_][]const u8{
"c/sqlite3.c",
"c/workaround.c",
},
.flags = c_flags,
});
test_sqlite_lib.linkLibC();
const tests = b.addTest(.{
.name = test_name,
.target = cross_target,
.optimize = optimize,
.root_source_file = b.path("sqlite.zig"),
.single_threaded = test_target.single_threaded,
});
tests.addIncludePath(b.path("c"));
tests.linkLibrary(test_sqlite_lib);
const tests_options = b.addOptions();
tests.root_module.addImport("build_options", tests_options.createModule());
tests_options.addOption(bool, "in_memory", in_memory);
tests_options.addOption(?[]const u8, "dbfile", dbfile);
const run_tests = b.addRunArtifact(tests);
test_step.dependOn(&run_tests.step);
}
const lib = b.addStaticLibrary(.{
.name = "sqlite",
.target = getTarget(target),
.optimize = optimize,
});
lib.addCSourceFile(.{ .file = b.path("c/sqlite3.c"), .flags = c_flags });
lib.addIncludePath(b.path("c"));
lib.linkLibC();
//
// Examples
//
// Loadable extension
//
// This builds an example shared library with the extension and a binary that tests it.
const zigcrypto_loadable_ext = b.addSharedLibrary(.{
.name = "zigcrypto",
.root_source_file = b.path("examples/zigcrypto.zig"),
.version = null,
.target = getTarget(target),
.optimize = optimize,
});
zigcrypto_loadable_ext.addIncludePath(b.path("c"));
zigcrypto_loadable_ext.root_module.addImport("sqlite", sqlite_mod);
zigcrypto_loadable_ext.linkLibrary(lib);
const install_zigcrypto_loadable_ext = b.addInstallArtifact(zigcrypto_loadable_ext, .{});
const zigcrypto_test = b.addExecutable(.{
.name = "zigcrypto-test",
.root_source_file = b.path("examples/zigcrypto_test.zig"),
.target = getTarget(target),
.optimize = optimize,
});
zigcrypto_test.addIncludePath(b.path("c"));
zigcrypto_test.root_module.addImport("sqlite", sqlite_mod);
zigcrypto_test.linkLibrary(lib);
const install_zigcrypto_test = b.addInstallArtifact(zigcrypto_test, .{});
const zigcrypto_compile_run = b.step("zigcrypto", "Build the 'zigcrypto' SQLite loadable extension");
zigcrypto_compile_run.dependOn(&install_zigcrypto_loadable_ext.step);
zigcrypto_compile_run.dependOn(&install_zigcrypto_test.step);
}
// See https://www.sqlite.org/compile.html for flags
const EnableOptions = struct {
// https://www.sqlite.org/fts5.html
fts5: bool = false,
};