-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig
202 lines (171 loc) · 5.02 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
const std = @import("std");
const toolbox_pkg = @import("toolbox");
const Toolbox = toolbox_pkg.Toolbox;
const Paths = struct {
__tmp: []const u8,
__tmp_src: []const u8,
__jq: []const u8,
__jq_src: []const u8,
fn getTmp(self: @This()) []const u8 {
return self.__tmp;
}
fn getTmpSrc(self: @This()) []const u8 {
return self.__tmp_src;
}
fn getJq(self: @This()) []const u8 {
return self.__jq;
}
fn getJqSrc(self: @This()) []const u8 {
return self.__jq_src;
}
fn init(toolbox: *Toolbox) !@This() {
const jq_path = try toolbox.buildRootJoin(&.{
"jq",
});
const tmp_path = try toolbox.buildRootJoin(&.{
"tmp",
});
return .{
.__jq = jq_path,
.__tmp = tmp_path,
.__jq_src = toolbox.pathJoin(&.{
jq_path, "src",
}),
.__tmp_src = toolbox.pathJoin(&.{
tmp_path, "src",
}),
};
}
};
fn update(toolbox: *Toolbox, path: *const Paths) !void {
std.fs.deleteTreeAbsolute(path.getJq()) catch |err| {
switch (err) {
error.FileNotFound => {},
else => return err,
}
};
try toolbox.clone(.jq, path.getTmp());
try toolbox.run(.{
.argv = &[_][]const u8{
"git", "submodule", "update", "--init",
},
.cwd = path.getTmp(),
});
try toolbox.run(.{
.argv = &[_][]const u8{
"autoreconf", "-i",
},
.cwd = path.getTmp(),
});
try toolbox.run(.{
.argv = &[_][]const u8{
"./configure", "--disable-docs", "--disable-valgrind", "--with-oniguruma=builtin",
},
.cwd = path.getTmp(),
});
try toolbox.run(.{
.argv = &[_][]const u8{
"make", "-j8",
},
.cwd = path.getTmp(),
});
try toolbox.make(path.getJq());
try toolbox.make(path.getJqSrc());
var src_dir = try std.fs.openDirAbsolute(path.getTmpSrc(), .{
.iterate = true,
});
defer src_dir.close();
var walker = try src_dir.walk(toolbox.getAllocator());
defer walker.deinit();
while (try walker.next()) |*entry| {
const dest = toolbox.pathJoin(&.{
path.getJqSrc(), entry.path,
});
switch (entry.kind) {
.file => try toolbox.copy(toolbox.pathJoin(&.{
path.getTmpSrc(), entry.path,
}), dest),
.directory => try toolbox.make(dest),
else => return error.UnexpectedEntryKind,
}
}
try std.fs.deleteTreeAbsolute(path.getTmp());
try std.fs.deleteTreeAbsolute(toolbox.pathJoin(&.{
path.getJqSrc(), "inject_errors.c",
}));
try std.fs.deleteTreeAbsolute(toolbox.pathJoin(&.{
path.getJqSrc(), "main.c",
}));
try toolbox.clean(&.{
"jq",
}, &.{
".inc",
});
}
const FromZon = toolbox_pkg.Repositories(.{
.toolbox, .oniguruma_zig,
});
const DuringExec = toolbox_pkg.Repositories(.{
.jq,
});
pub fn build(builder: *std.Build) !void {
const target = builder.standardTargetOptions(.{});
const optimize = builder.standardOptimizeOption(.{});
var toolbox = try Toolbox.init(FromZon, DuringExec, builder, optimize, .libjq_zig, "0x4fefb366172605fb", &.{
"jq",
}, .{
.toolbox = .{
.name = "tiawl/toolbox",
.host = .github,
.ref = .tag,
},
.oniguruma_zig = .{
.name = "tiawl/oniguruma.zig",
.host = .github,
.ref = .tag,
},
}, .{
.jq = .{
.name = "jqlang/jq",
.host = .github,
.ref = .commit,
},
});
defer toolbox.deinit();
const path = try Paths.init(&toolbox);
if (toolbox.getUpdate()) try update(&toolbox, &path);
const lib = builder.addStaticLibrary(.{
.name = "jq",
.root_source_file = builder.addWriteFiles().add("empty.c", ""),
.target = target,
.optimize = optimize,
});
toolbox.addInclude(lib, "jq");
if (lib.rootModuleTarget().isMinGW()) {
lib.linkSystemLibrary("shlwapi");
}
const oniguruma_dep = builder.dependency("oniguruma_zig", .{
.target = target,
.optimize = optimize,
});
lib.linkLibrary(oniguruma_dep.artifact("oniguruma"));
lib.installLibraryHeaders(oniguruma_dep.artifact("oniguruma"));
lib.linkLibC();
toolbox.addHeader(lib, path.getJqSrc(), ".", &.{
".h", ".inc",
});
var jq_src_dir = try std.fs.openDirAbsolute(path.getJqSrc(), .{
.iterate = true,
});
defer jq_src_dir.close();
const flags = [_][]const u8{
"-DIEEE_8087=1", "-D_GNU_SOURCE=1", "-DHAVE_LIBONIG=1",
};
var it = jq_src_dir.iterate();
while (try it.next()) |*entry| {
if (toolbox_pkg.isCSource(entry.name) and entry.kind == .file) {
try toolbox.addSource(lib, path.getJqSrc(), entry.name, &flags);
}
}
builder.installArtifact(lib);
}