Skip to content

Commit

Permalink
Fixes #15307
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Dec 5, 2024
1 parent 784bc4e commit b7b1ca8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/compile_target.zig
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,10 @@ pub fn downloadToPath(this: *const CompileTarget, env: *bun.DotEnv.Loader, alloc
pub fn isSupported(this: *const CompileTarget) bool {
return switch (this.os) {
.windows => this.arch == .x64,

.mac => true,
.linux => this.libc == .default,
.linux => true,

.wasm => false,
};
}
Expand Down

0 comments on commit b7b1ca8

Please sign in to comment.