mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
87 lines
2.6 KiB
Zig
87 lines
2.6 KiB
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
pub const bun = @import("./bun.zig");
|
|
const Output = bun.Output;
|
|
const Environment = bun.Environment;
|
|
|
|
pub const panic = bun.crash_handler.panic;
|
|
pub const std_options = std.Options{
|
|
.enable_segfault_handler = false,
|
|
};
|
|
|
|
pub const io_mode = .blocking;
|
|
|
|
comptime {
|
|
bun.assert(builtin.target.cpu.arch.endian() == .little);
|
|
}
|
|
|
|
extern fn bun_warn_avx_missing(url: [*:0]const u8) void;
|
|
|
|
pub extern "c" var _environ: ?*anyopaque;
|
|
pub extern "c" var environ: ?*anyopaque;
|
|
|
|
pub fn main() void {
|
|
bun.crash_handler.init();
|
|
|
|
if (Environment.isPosix) {
|
|
var act: std.posix.Sigaction = .{
|
|
.handler = .{ .handler = std.posix.SIG.IGN },
|
|
.mask = std.posix.empty_sigset,
|
|
.flags = 0,
|
|
};
|
|
std.posix.sigaction(std.posix.SIG.PIPE, &act, null);
|
|
std.posix.sigaction(std.posix.SIG.XFSZ, &act, null);
|
|
}
|
|
|
|
// This should appear before we make any calls at all to libuv.
|
|
// So it's safest to put it very early in the main function.
|
|
if (Environment.isWindows) {
|
|
_ = bun.windows.libuv.uv_replace_allocator(
|
|
@ptrCast(&bun.Mimalloc.mi_malloc),
|
|
@ptrCast(&bun.Mimalloc.mi_realloc),
|
|
@ptrCast(&bun.Mimalloc.mi_calloc),
|
|
@ptrCast(&bun.Mimalloc.mi_free),
|
|
);
|
|
environ = @ptrCast(std.os.environ.ptr);
|
|
_environ = @ptrCast(std.os.environ.ptr);
|
|
}
|
|
|
|
bun.start_time = std.time.nanoTimestamp();
|
|
bun.initArgv(bun.default_allocator) catch |err| {
|
|
Output.panic("Failed to initialize argv: {s}\n", .{@errorName(err)});
|
|
};
|
|
|
|
Output.Source.Stdio.init();
|
|
defer Output.flush();
|
|
if (Environment.isX64 and Environment.enableSIMD and Environment.isPosix) {
|
|
bun_warn_avx_missing(@import("./cli/upgrade_command.zig").Version.Bun__githubBaselineURL.ptr);
|
|
}
|
|
|
|
bun.StackCheck.configureThread();
|
|
|
|
bun.CLI.Cli.start(bun.default_allocator);
|
|
bun.Global.exit(0);
|
|
}
|
|
|
|
pub export fn Bun__panic(msg: [*]const u8, len: usize) noreturn {
|
|
Output.panic("{s}", .{msg[0..len]});
|
|
}
|
|
|
|
// -- Zig Standard Library Additions --
|
|
pub fn copyForwards(comptime T: type, dest: []T, source: []const T) void {
|
|
if (source.len == 0) {
|
|
return;
|
|
}
|
|
bun.copy(T, dest[0..source.len], source);
|
|
}
|
|
pub fn copyBackwards(comptime T: type, dest: []T, source: []const T) void {
|
|
if (source.len == 0) {
|
|
return;
|
|
}
|
|
bun.copy(T, dest[0..source.len], source);
|
|
}
|
|
pub fn eqlBytes(src: []const u8, dest: []const u8) bool {
|
|
return bun.C.memcmp(src.ptr, dest.ptr, src.len) == 0;
|
|
}
|
|
// -- End Zig Standard Library Additions --
|