Skip to content

Commit

Permalink
update ziget, remove iguanaTLS in favor of std's implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
marler8997 committed Jul 27, 2023
1 parent f38bd66 commit feccfeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions build2.zig
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ pub fn build(b: *Builder) !void {
//}

//var github_release_step = b.step("github-release", "Build the github-release binaries");
// TODO: need to implement some interesting logic to make this work without
// having the iguana repo copied into this one
//try addGithubReleaseExe(b, github_release_step, ziget_repo, "x86_64-linux", SslBackend.iguana);
//try addGithubReleaseExe(b, github_release_step, ziget_repo, "x86_64-linux", .std);

const target = if (b.option([]const u8, "ci_target", "the CI target being built")) |ci_target|
try std.zig.CrossTarget.parse(.{ .arch_os_abi = ci_target_map.get(ci_target) orelse {
Expand Down Expand Up @@ -59,7 +57,7 @@ pub fn build(b: *Builder) !void {
};

// TODO: Maybe add more executables with different ssl backends
const exe = try addZigupExe(b, ziget_repo, target, mode, zigup_build_options, win32exelink, zigetbuild.SslBackend.iguana);
const exe = try addZigupExe(b, ziget_repo, target, mode, zigup_build_options, win32exelink, .std);
exe.install();

const run_cmd = exe.run();
Expand Down
2 changes: 1 addition & 1 deletion zigetsha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fcf104cd3a59e8f9465512e735f3b820137105ef
bcba3e1fe1c3464fa1bb2e8058942e134e2e03a2

0 comments on commit feccfeb

Please sign in to comment.