Skip to content

Commit 9ce27c8

Browse files
committed
fix #2156: linux arm64 support for deno
1 parent 5829301 commit 9ce27c8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
* Add Linux ARM64 support for Deno ([#2156](https://github.com/evanw/esbuild/issues/2156))
6+
7+
This release adds Linux ARM64 support to esbuild's [Deno](https://deno.land/) API implementation, which allows esbuild to be used with Deno on a Raspberry Pi.
8+
39
## 0.14.32
410

511
* Fix `super` usage in lowered private methods ([#2039](https://github.com/evanw/esbuild/issues/2039))

lib/deno/mod.ts

+1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ async function install(): Promise<string> {
146146
}
147147
const knownUnixlikePackages: Record<string, string> = {
148148
'aarch64-apple-darwin': 'esbuild-darwin-arm64',
149+
'aarch64-unknown-linux-gnu': 'esbuild-linux-arm64',
149150
'x86_64-apple-darwin': 'esbuild-darwin-64',
150151
'x86_64-unknown-linux-gnu': 'esbuild-linux-64',
151152
}

0 commit comments

Comments
 (0)