Drop Zig 0.11.0 support (#525)

* scm: Update to beta 3 in `build.zig.zon`

* scm: Drop Zig 0.11.0 support

* scm: Make shared library PIC
This commit is contained in:
John 2024-11-19 22:57:11 +09:00 committed by GitHub
parent 72ae4703aa
commit 387bebe2c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 33 additions and 47 deletions

View File

@ -8,7 +8,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
version: [0.11.0, 0.12.0, 0.13.0, ''] version: [0.12.0, 0.13.0, '']
fail-fast: false fail-fast: false
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:

View File

@ -14,26 +14,19 @@ pub fn build(b: *Build) !void {
const target = b.standardTargetOptions(.{}); const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{}); const optimize = b.standardOptimizeOption(.{});
switch (comptime zig_ver) {
12, 13, 14 => {},
else => return error.UnsupportedZigVersion,
}
const is_dynamic = b.option(bool, "dynamic", "build the dynamic library") orelse false; const is_dynamic = b.option(bool, "dynamic", "build the dynamic library") orelse false;
const enable_tls = b.option(bool, "enable-tls", "enable TLS support") orelse false; const enable_tls = b.option(bool, "enable-tls", "enable TLS support") orelse false;
const verbose = b.option(std.log.Level, "verbose", "set verbose output") orelse .warn; const verbose = b.option(std.log.Level, "verbose", "set verbose output") orelse .warn;
global_log_level = verbose; global_log_level = verbose;
switch (comptime zig_ver) { if (enable_tls and !target.query.isNative()) {
11 => { log(.err, .WebUI, "cross compilation is not supported with TLS enabled", .{});
if (enable_tls and !target.isNative()) { return error.InvalidBuildConfiguration;
log(.err, .WebUI, "cross compilation is not supported with TLS enabled", .{});
return error.InvalidBuildConfiguration;
}
},
12, 13, 14 => {
if (enable_tls and !target.query.isNative()) {
log(.err, .WebUI, "cross compilation is not supported with TLS enabled", .{});
return error.InvalidBuildConfiguration;
}
},
else => return error.UnsupportedZigVersion,
} }
log(.info, .WebUI, "Building {s} WebUI library{s}...", .{ log(.info, .WebUI, "Building {s} WebUI library{s}...", .{
@ -48,6 +41,7 @@ pub fn build(b: *Build) !void {
.name = lib_name, .name = lib_name,
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
.pic = true,
}) else b.addStaticLibrary(.{ }) else b.addStaticLibrary(.{
.name = lib_name, .name = lib_name,
.target = target, .target = target,
@ -61,8 +55,8 @@ pub fn build(b: *Build) !void {
} }
fn addLinkerFlags(b: *Build, webui: *Compile, enable_tls: bool) !void { fn addLinkerFlags(b: *Build, webui: *Compile, enable_tls: bool) !void {
const webui_target = if (zig_ver < 12) webui.target else webui.rootModuleTarget(); const webui_target = webui.rootModuleTarget();
const is_windows = if (zig_ver < 12) webui_target.isWindows() else webui_target.os.tag == .windows; const is_windows = webui_target.os.tag == .windows;
// Prepare compiler flags. // Prepare compiler flags.
const no_tls_flags: []const []const u8 = &.{"-DNO_SSL"}; const no_tls_flags: []const []const u8 = &.{"-DNO_SSL"};
@ -76,23 +70,19 @@ fn addLinkerFlags(b: *Build, webui: *Compile, enable_tls: bool) !void {
}; };
webui.addCSourceFile(.{ webui.addCSourceFile(.{
.file = if (zig_ver < 12) .{ .path = "src/webui.c" } else b.path("src/webui.c"), .file = b.path("src/webui.c"),
.flags = if (enable_tls) tls_flags else no_tls_flags, .flags = if (enable_tls) tls_flags else no_tls_flags,
}); });
webui.addCSourceFile(.{ webui.addCSourceFile(.{
.file = if (zig_ver < 12) .{ .path = "src/civetweb/civetweb.c" } else b.path("src/civetweb/civetweb.c"), .file = b.path("src/civetweb/civetweb.c"),
.flags = if (enable_tls) civetweb_flags ++ tls_flags else civetweb_flags ++ .{"-DUSE_WEBSOCKET"} ++ no_tls_flags, .flags = if (enable_tls) civetweb_flags ++ tls_flags else civetweb_flags ++ .{"-DUSE_WEBSOCKET"} ++ no_tls_flags,
}); });
webui.linkLibC(); webui.linkLibC();
webui.addIncludePath(if (zig_ver < 12) .{ .path = "include" } else b.path("include")); webui.addIncludePath(b.path("include"));
if (zig_ver < 12) { webui.installHeader(b.path("include/webui.h"), "webui.h");
webui.installHeader("include/webui.h", "webui.h");
} else {
webui.installHeader(b.path("include/webui.h"), "webui.h");
}
if (webui_target.isDarwin()) { if (webui_target.isDarwin()) {
webui.addCSourceFile(.{ webui.addCSourceFile(.{
.file = if (zig_ver < 12) .{ .path = "src/webview/wkwebview.m" } else b.path("src/webview/wkwebview.m"), .file = b.path("src/webview/wkwebview.m"),
.flags = &.{}, .flags = &.{},
}); });
webui.linkFramework("Cocoa"); webui.linkFramework("Cocoa");
@ -114,11 +104,11 @@ fn addLinkerFlags(b: *Build, webui: *Compile, enable_tls: bool) !void {
webui.linkSystemLibrary("crypto"); webui.linkSystemLibrary("crypto");
} }
for (if (zig_ver < 12) webui.link_objects.items else webui.root_module.link_objects.items) |lo| { for (webui.root_module.link_objects.items) |lo| {
switch (lo) { switch (lo) {
.c_source_file => |csf| { .c_source_file => |csf| {
log(.debug, .WebUI, "{s} linker flags: {s}", .{ log(.debug, .WebUI, "{s} linker flags: {s}", .{
if (zig_ver < 12) csf.file.path else csf.file.src_path.sub_path, csf.file.src_path.sub_path,
csf.flags, csf.flags,
}); });
}, },
@ -129,22 +119,18 @@ fn addLinkerFlags(b: *Build, webui: *Compile, enable_tls: bool) !void {
fn build_examples(b: *Build, webui: *Compile) !void { fn build_examples(b: *Build, webui: *Compile) !void {
const build_examples_step = b.step("examples", "builds the library and its examples"); const build_examples_step = b.step("examples", "builds the library and its examples");
const target = if (zig_ver < 12) webui.target else webui.root_module.resolved_target.?; const target = webui.root_module.resolved_target.?;
const optimize = if (zig_ver < 12) webui.optimize else webui.root_module.optimize.?; const optimize = webui.root_module.optimize.?;
const examples_path = (if (zig_ver < 12) (Build.LazyPath{ .path = "examples/C" }) else b.path("examples/C")).getPath(b); const examples_path = b.path("examples/C").getPath(b);
var examples_dir = if (zig_ver < 12) var examples_dir = std.fs.cwd().openDir(
std.fs.cwd().openIterableDir(examples_path, .{}) catch |e| switch (e) { examples_path,
// Do not attempt building examples if directory does not exist. .{ .iterate = true },
error.FileNotFound => return, ) catch |e| switch (e) {
else => return e, // Do not attempt building examples if directory does not exist.
} error.FileNotFound => return,
else else => return e,
std.fs.cwd().openDir(examples_path, .{ .iterate = true }) catch |e| switch (e) { };
// Do not attempt building examples if directory does not exist.
error.FileNotFound => return,
else => return e,
};
defer examples_dir.close(); defer examples_dir.close();
var paths = examples_dir.iterate(); var paths = examples_dir.iterate();
@ -158,7 +144,7 @@ fn build_examples(b: *Build, webui: *Compile) !void {
const path = try std.fmt.allocPrint(b.allocator, "examples/C/{s}/main.c", .{example_name}); const path = try std.fmt.allocPrint(b.allocator, "examples/C/{s}/main.c", .{example_name});
defer b.allocator.free(path); defer b.allocator.free(path);
exe.addCSourceFile(.{ .file = if (zig_ver < 12) .{ .path = path } else b.path(path), .flags = &.{} }); exe.addCSourceFile(.{ .file = b.path(path), .flags = &.{} });
exe.linkLibrary(webui); exe.linkLibrary(webui);
const exe_install = b.addInstallArtifact(exe, .{}); const exe_install = b.addInstallArtifact(exe, .{});
@ -170,7 +156,7 @@ fn build_examples(b: *Build, webui: *Compile) !void {
const cwd = try std.fmt.allocPrint(b.allocator, "src/examples/{s}", .{example_name}); const cwd = try std.fmt.allocPrint(b.allocator, "src/examples/{s}", .{example_name});
defer b.allocator.free(cwd); defer b.allocator.free(cwd);
if (zig_ver < 12) exe_run.cwd = cwd else exe_run.setCwd(b.path(cwd)); exe_run.setCwd(b.path(cwd));
exe_run.step.dependOn(&exe_install.step); exe_run.step.dependOn(&exe_install.step);
build_examples_step.dependOn(&exe_install.step); build_examples_step.dependOn(&exe_install.step);

View File

@ -1,6 +1,6 @@
.{ .{
.name = "webui", .name = "webui",
.version = "2.5.0-beta.2", .version = "2.5.0-beta.3",
.paths = .{ .paths = .{
"src", "src",
"include", "include",