mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
13 lines
382 B
Zig
13 lines
382 B
Zig
pub const bindgen = true;
|
|
|
|
pub const main = @import("./bun.js/bindings/bindings-generator.zig").main;
|
|
pub export fn PLCrashReportHandler(_: ?*anyopaque) void {}
|
|
pub export fn mkdirp(_: ?*anyopaque) void {}
|
|
pub const build_options = @import("build_options");
|
|
pub const bun = @import("./bun.zig");
|
|
|
|
comptime {
|
|
if (!bun.Environment.isRelease)
|
|
_ = @import("compiler_rt");
|
|
}
|