blob: 0880799d7065e6b86f2b451699e2f9929f725ca6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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");
}
|