diff options
author | 2022-12-28 06:09:14 -0800 | |
---|---|---|
committer | 2022-12-28 06:09:14 -0800 | |
commit | ef3c9b7c6d6557f7cf50210f4a54187351d47ca8 (patch) | |
tree | 05d0a0851b158ecc33abc0657774871222476207 /src | |
parent | 6260aaac5fc5be7296be1414bc06977df168ec07 (diff) | |
download | bun-ef3c9b7c6d6557f7cf50210f4a54187351d47ca8.tar.gz bun-ef3c9b7c6d6557f7cf50210f4a54187351d47ca8.tar.zst bun-ef3c9b7c6d6557f7cf50210f4a54187351d47ca8.zip |
Workaround https://github.com/ziglang/zig/issues/14099
Diffstat (limited to 'src')
-rw-r--r-- | src/main.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index ba3fd97d9..9b7c5eb08 100644 --- a/src/main.zig +++ b/src/main.zig @@ -43,3 +43,7 @@ test "panic" { pub const build_options = @import("build_options"); pub const bun = @import("./bun.zig"); + +comptime { + _ = @import("compiler_rt"); +} |