AsmJit on the Zig Build System.
Add this package to build.zig.zon:
zig fetch --save git+https://github.com/KNnut/asmjitAnd then import asmjit in build.zig with:
const asmjit_dep = b.dependency("asmjit", .{
.target = target,
.optimize = optimize,
});
lib.root_module.linkLibrary(asmjit_dep.artifact("asmjit"));