diff options
author | 2022-07-22 00:58:45 -0700 | |
---|---|---|
committer | 2022-07-22 00:58:45 -0700 | |
commit | 0d4b4c494243cf73bf704971dcc0711c5882a8aa (patch) | |
tree | 997f8cd101803ff023e277a2330ad7bf8472cb59 /src/env.zig | |
parent | c772256e93931f032751474e5ddeccbb92cee847 (diff) | |
download | bun-0d4b4c494243cf73bf704971dcc0711c5882a8aa.tar.gz bun-0d4b4c494243cf73bf704971dcc0711c5882a8aa.tar.zst bun-0d4b4c494243cf73bf704971dcc0711c5882a8aa.zip |
Canary builds (Linux) (#824)canary
* wip
* WIP:
* WIP
* WIP
* WIP
* WIP
* WIP
* Update WebKit
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* Update WebKit
* WIP
* WIP
* WIP
* WIP
* Workaround missing system calls
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* Fix baseline detection
* WIP
* strip debug symbol
* Auto-generate canary build
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/env.zig')
-rw-r--r-- | src/env.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/env.zig b/src/env.zig index 0e4cbc414..aa0a6de86 100644 --- a/src/env.zig +++ b/src/env.zig @@ -25,4 +25,4 @@ 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; pub const analytics_url = if (isDebug) "http://localhost:4000/events" else "http://i.bun.sh/events"; -pub const simd = isX86 or isAarch64; +pub const baseline = @import("build_options").baseline; |