mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* fix(win/upgrade): do not show powershell expand-archive info while upgrading * start working bun run * experiment: `bun.new` * you can now bun run * Update src/install/install.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * Update src/install/install.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * stuff * fix stuff * fix this * farther but not really * sadfs * path hell not sure how much worse or better this makes things. its a mess. windows path handlign is a mess aaaaaaaaaaaaaaaa * path.resolve bs * remove old build system stuff from pr * a * fix some path.parse/join cases * path closer not perfect * normalize and join tests tests done * paths * implement path.relative * , * stuff * assert * fix compile * hate * the code isnt great * stuff * housekeeping for build system * blah * explain windows sitaution in docs * some progress? not much though * zig compiler crashes here * fix * yippee * ok * a * ala wala * fix builds on stuff * clean * the tests now run * a * aa * dedupe uv event loop * fix fs test accuracy * stuff * [autofix.ci] apply automated fixes * huge updat e * [autofix.ci] apply automated fixes * url * [autofix.ci] apply automated fixes * start windows spawnSync * [autofix.ci] apply automated fixes * add --webkit for update submodules * add better err message for `bun setup` * fix unix platform build * . * [autofix.ci] apply automated fixes * un-upgrade libarchive * z * asdfghj * wrk * todo -> panic * ok * a * [autofix.ci] apply automated fixes * fix build scripts l ol * dfghj * fa * [autofix.ci] apply automated fixes * aaaa * a * l * [autofix.ci] apply automated fixes * more logs * [autofix.ci] apply automated fixes * j * fix init_command * CORE DUMP HELL * i swear im being pranked by the github actions gods * fadsjkfdshjkhjkdfsahjkdfshjksdafjkhhjkfdsahfsdkjhfsdjkahf * thanks IAS * this is the correct fix * personal review * ddisablbe these * revisions! * ok * fix submodule * stuff * fix libarchive * [autofix.ci] apply automated fixes * stuff * [autofix.ci] apply automated fixes * a * fix addressToJS on windows * make dns async again * dx: add flag to update submodules ps1 to clone webkit * dns error case for libuv * dx improvements on windows * newline * obvious fix * install steps * extra note * fix fs test * Update building-windows.md * fix builtins bundler to support \r\n line endnigs * better * some windows stuff * a * a * a * aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * [autofix.ci] apply automated fixes * bunfile text works * fix build on the mac * hellooooooooooo * install steps * ci for baseline? * fix * aaa * wow * install script revamp * bug * OK * ok * aaaaaaaaaaaaaa * okay * fix the node test runner lol * fix napi stuff --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: cirospaciari <ciro.spaciai@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com>
95 lines
3.3 KiB
Zig
95 lines
3.3 KiB
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
|
|
pub const BuildTarget = enum { native, wasm, wasi };
|
|
pub const build_target: BuildTarget = brk: {
|
|
if (@import("builtin").target.isWasm()) {
|
|
break :brk BuildTarget.wasm;
|
|
} else {
|
|
break :brk BuildTarget.native;
|
|
}
|
|
};
|
|
|
|
pub const isWasm = build_target == .wasm;
|
|
pub const isNative = build_target == .native;
|
|
pub const isWasi = build_target == .wasi;
|
|
pub const isMac = build_target == .native and @import("builtin").target.os.tag == .macos;
|
|
pub const isBrowser = !isWasi and isWasm;
|
|
pub const isWindows = @import("builtin").target.os.tag == .windows;
|
|
pub const isPosix = !isWindows and !isWasm;
|
|
pub const isDebug = std.builtin.Mode.Debug == @import("builtin").mode;
|
|
pub const isRelease = std.builtin.Mode.Debug != @import("builtin").mode and !isTest;
|
|
pub const isTest = @import("builtin").is_test;
|
|
pub const isLinux = @import("builtin").target.os.tag == .linux;
|
|
pub const isAarch64 = @import("builtin").target.cpu.arch.isAARCH64();
|
|
pub const isX86 = @import("builtin").target.cpu.arch.isX86();
|
|
pub const isX64 = @import("builtin").target.cpu.arch == .x86_64;
|
|
pub const allow_assert = isDebug or isTest or std.builtin.Mode.ReleaseSafe == @import("builtin").mode;
|
|
pub const analytics_url = if (isDebug) "http://localhost:4000/events" else "http://i.bun.sh/events";
|
|
|
|
const BuildOptions = if (isTest) struct {
|
|
pub const baseline = false;
|
|
pub const sha = "0000000000000000000000000000000000000000";
|
|
pub const is_canary = false;
|
|
pub const base_path = "/tmp";
|
|
pub const canary_revision = 0;
|
|
} else @import("root").build_options;
|
|
|
|
pub const baseline = BuildOptions.baseline;
|
|
pub const enableSIMD: bool = !baseline;
|
|
pub const git_sha = BuildOptions.sha;
|
|
pub const git_sha_short = if (BuildOptions.sha.len > 0) BuildOptions.sha[0..9] else "";
|
|
pub const git_sha_shorter = if (BuildOptions.sha.len > 0) BuildOptions.sha[0..6] else "";
|
|
pub const is_canary = BuildOptions.is_canary;
|
|
pub const canary_revision = if (is_canary) BuildOptions.canary_revision else "";
|
|
pub const dump_source = isDebug and !isTest;
|
|
pub const base_path = BuildOptions.base_path ++ "/";
|
|
|
|
pub const version: std.SemanticVersion = BuildOptions.version;
|
|
pub const version_string = std.fmt.comptimePrint("{d}.{d}.{d}", .{ version.major, version.minor, version.patch });
|
|
|
|
pub inline fn onlyMac() void {
|
|
if (comptime !isMac) {
|
|
unreachable;
|
|
}
|
|
}
|
|
|
|
pub const OperatingSystem = enum {
|
|
mac,
|
|
linux,
|
|
windows,
|
|
// wAsM is nOt aN oPeRaTiNg SyStEm
|
|
wasm,
|
|
|
|
/// user-facing name with capitalization
|
|
pub fn displayString(self: OperatingSystem) []const u8 {
|
|
return switch (self) {
|
|
.mac => "macOS",
|
|
.linux => "Linux",
|
|
.windows => "Windows",
|
|
.wasm => "WASM",
|
|
};
|
|
}
|
|
|
|
/// same format as `process.platform`
|
|
pub fn nameString(self: OperatingSystem) []const u8 {
|
|
return switch (self) {
|
|
.mac => "darwin",
|
|
.linux => "linux",
|
|
.windows => "win32",
|
|
.wasm => "wasm",
|
|
};
|
|
}
|
|
};
|
|
|
|
pub const os: OperatingSystem = if (isMac)
|
|
OperatingSystem.mac
|
|
else if (isLinux)
|
|
OperatingSystem.linux
|
|
else if (isWindows)
|
|
OperatingSystem.windows
|
|
else if (isWasm)
|
|
OperatingSystem.wasm
|
|
else
|
|
@compileError("Please add your OS to the OperatingSystem enum");
|