Skip to content

Commit

Permalink
fix(ci): set default LLVM name
Browse files Browse the repository at this point in the history
  • Loading branch information
tensorush committed Jul 22, 2024
1 parent 3072b37 commit 4fd1a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ pub fn build(b: *std.Build) !void {
if (std.mem.indexOf(u8, llvm_libs, "-lLLVM-1")) |llvm_lib_name_idx| {
break :blk llvm_libs[llvm_lib_name_idx + 2 .. llvm_lib_name_idx + 9];
}
unreachable;
break :blk "LLVM";
};

const llvm_common_obj = b.addObject(.{
Expand Down

0 comments on commit 4fd1a2a

Please sign in to comment.