From 0a10507bdbacd649b6d4acb5c4bb76a8accebb68 Mon Sep 17 00:00:00 2001 From: Gabor Szarnyas Date: Wed, 22 Jan 2025 19:29:27 +0100 Subject: [PATCH] Introduce musl to the build platforms --- docs/dev/building/overview.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/dev/building/overview.md b/docs/dev/building/overview.md index 744238dacdc..9dccb42873a 100644 --- a/docs/dev/building/overview.md +++ b/docs/dev/building/overview.md @@ -47,8 +47,10 @@ For some platforms, DuckDB binaries and extensions (or a [subset of extensions]( |------------------------|------------------------------------------------------------------------------------------------------| | `freebsd_amd64` | FreeBSD AMD64 (x86_64) | | `freebsd_arm64` | FreeBSD ARM64 (AArch64) | +| `linux_amd64_musl` | Linux AMD64 (x86_64) with musl libc, e.g., Alpine Linux | | `linux_arm64_android` | Android ARM64 (AArch64) | | `linux_arm64_gcc4` | Linux ARM64 (AArch64) with GCC 4, e.g., CentOS 7 | +| `linux_arm64_musl` | Linux ARM64 (x86_64) with musl libc, e.g., Alpine Linux | | `wasm_eh` | WebAssembly Exception Handling | | `wasm_mvp` | WebAssembly Minimum Viable Product | | `windows_amd64_mingw` | Windows 10+ AMD64 (x86_64) with MinGW |