Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce ARM64 support on Windows #3100

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/dev/building/supported_platforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ DuckDB officially supports the following platforms:
| `osx_amd64` | macOS 12+ (Intel CPUs) |
| `osx_arm64` | macOS 12+ (Apple Silicon: M1, M2, M3 CPUs) |
| `windows_amd64` | Windows 10+ on Intel and AMD CPUs (x86_64) |
| `windows_arm64` | Windows 10+ on ARM CPUs (AArch64) |

DuckDB can be [built from source]({% link docs/dev/building/build_instructions.md %}) for several other platforms such as Windows with ARM64 CPUs (Qualcomm, Snapdragon, etc.) and macOS 11.
DuckDB can be [built from source]({% link docs/dev/building/build_instructions.md %}) for several other platforms such as FreeBSD and macOS 11.

For details on free and commercial support, see the [support policy blog post](https://duckdblabs.com/news/2023/10/02/support-policy#platforms).
2 changes: 1 addition & 1 deletion docs/extensions/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DuckDB has a flexible extension mechanism that allows for dynamically loading ex
These may extend DuckDB's functionality by providing support for additional file formats, introducing new types, and domain-specific functionality.

> Extensions are loadable on all clients (e.g., Python and R).
> Extensions distributed via the official repository are built and tested on macOS (AMD64 and ARM64), Windows (AMD64) and Linux (AMD64 and ARM64).
> Extensions distributed via the official repository are built and tested on macOS, Windows and Linux. All operating systems are supported for both the AMD64 and the ARM64 architectures.

## Listing Extensions

Expand Down