Skip to content

Commit

Permalink
Support dprint on aarch64 Linux (musl)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 31, 2023
1 parent eb3cf0b commit caf2aa3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

- Update `biome@latest` to 1.3.3.

- Support `dprint` on aarch64 Linux (musl).

## [2.21.5] - 2023-10-30

- Update `cargo-llvm-cov@latest` to 0.5.36.
Expand Down
7 changes: 5 additions & 2 deletions manifests/dprint.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions tools/codegen/base/dprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"x86_64_macos": {},
"x86_64_windows": {},
"aarch64_linux_gnu": {},
"aarch64_linux_musl": {},
"aarch64_macos": {}
}
}
1 change: 1 addition & 0 deletions tools/codegen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ fn main() -> Result<()> {
continue;
}
// compact manifest
// TODO: do this before download binaries
if download_info.contains_key(&HostPlatform::x86_64_linux_gnu)
&& download_info.contains_key(&HostPlatform::x86_64_linux_musl)
{
Expand Down

0 comments on commit caf2aa3

Please sign in to comment.