Static cURL binary built with the latest features, such as ECH, HTTP3, brotli, and zstd.
The script will automatically retrieve the latest version of each component.
Simply execute it to compile the most recent version.
Included components
curl -V
Download the latest release from the Releases page.
Extract the archive and use it.
The binary is built with GitHub Actions.
Starting from cURL 8.20.0, all builds use OpenSSL 4.x with ECH support enabled by default.
For older releases (before 8.20.0), two versions were provided: one with ECH support and one without.
curl-linux-ARCH-musl-VERSION: binaries for Linux, linked with muslcurl-linux-ARCH-glibc-VERSION: binaries for Linux, linked with glibc, these binaries may have compatibility issues in certain system environmentscurl-linux-ARCH-dev-VERSION: binaries, headers and static library archives for Linux, linked with musl(after curl v8.2.1)curl-macOS-ARCH-VERSION: binaries for macOScurl-macOS-ARCH-dev-VERSION: binaries, headers and static library archives for macOScurl-windows-ARCH-VERSION: binaries for Windowscurl-windows-ARCH-dev-VERSION: binaries, headers and library archives for WindowsFor Linux glibc versions, if your system’s /etc/nsswitch.conf file is configured with passwd: compat, glibc will attempt to load libnss_compat.so, libnss_nis.so, libpthread.so, etc. These libraries may not be compatible with the statically linked glibc, and the program might crash.
Currently, there is no good solution for this issue, except for compiling glibc within the script.
In this case, it is recommended to use the musl version.
This script utilizes clang(glibc) and qbt-musl-cross-make(musl) for cross-compilation on Linux, mstorsjo/llvm-mingw for cross-compilation for Windows, providing support for the following architectures:
sh curl-static-cross.shsupported architectures
ARCHES: "x86_64 aarch64 armv7 armv5 riscv64 s390x mips64 mips64el mips mipsel powerpc64le powerpc i686 loongarch64"
If you need to specify more parameters, run:
docker run --network host --rm -v $(pwd):/mnt -w /mnt \
--name "build-curl-$(date +%Y%m%d-%H%M)" \
-e ARCHES="x86_64 aarch64 armv7 armv5 riscv64 s390x mips64 mips64el mips mipsel powerpc64le powerpc i686 loongarch64" \
-e TLS_LIB="openssl" \
-e LIBC="glibc" \
-e QBT_MUSL_CROSS_MAKE_VERSION="" \
-e CURL_VERSION="" \
-e OPENSSL_VERSION="" \
-e NGTCP2_VERSION="" \
-e NGHTTP3_VERSION="" \
-e NGHTTP2_VERSION="" \
-e ZLIB_VERSION="" \
-e LIBUNISTRING_VERSION="" \
-e LIBIDN2_VERSION="" \
-e LIBPSL_VERSION="" \
-e ARES_VERSION="" \
-e ENABLE_TRURL="true" \
-e TRURL_VERSION="" \
debian:latest sh curl-static-cross.sh
Run the following command to compile:
ARCHES="x86_64 arm64" \
TLS_LIB=openssl \
CURL_VERSION="" \
OPENSSL_VERSION="" \
NGTCP2_VERSION="" \
NGHTTP3_VERSION="" \
NGHTTP2_VERSION="" \
LIBIDN2_VERSION="" \
LIBUNISTRING_VERSION="" \
ZLIB_VERSION="" \
BROTLI_VERSION="" \
ZSTD_VERSION="" \
LIBSSH2_VERSION="" \
LIBPSL_VERSION="" \
ARES_VERSION="" \
bash curl-static-mac.sh
Install Docker, clone this Git repository, navigate to the repository directory, and then execute the following command:
ARCHES="x86_64 i686 aarch64 armv7" sh curl-static-win.sh
script will create a Linux container and cross-compile cURL via LLVM MinGW toolchain.
If you need to specify more parameters, run:
docker run --network host --rm -v $(pwd):/mnt -w /mnt \
--name "build-curl-$(date +%Y%m%d-%H%M)" \
-e ARCHES="x86_64 i686 aarch64 armv7" \
-e TLS_LIB="openssl" \
-e CURL_VERSION="" \
-e OPENSSL_VERSION="" \
-e NGTCP2_VERSION="" \
-e NGHTTP3_VERSION="" \
-e NGHTTP2_VERSION="" \
-e ZLIB_VERSION="" \
-e LIBUNISTRING_VERSION="" \
-e LIBIDN2_VERSION="" \
-e LIBPSL_VERSION="" \
-e ARES_VERSION="" \
-e ENABLE_TRURL="true" \
-e TRURL_VERSION="" \
mstorsjo/llvm-mingw:latest sh curl-static-win.sh
Supported Environment Variables list:
For all VERSION variables, leaving them blank will automatically fetch the latest version.
ARCHES: The list of architectures to compile. You can set one or multiple architectures from the following options: CompileTLS_LIB: The TLS library. Only openssl for now.LIBC: The libc. glibc(default) or musl, only affects Linux.QBT_MUSL_CROSS_MAKE_VERSION: The version of qbt-musl-cross-make, only affects musl. Check the releases on qbt-musl-cross-make/releasesCURL_VERSION: The version of cURL. If set to dev, will fetch the latest source code of branch master from GitHub.OPENSSL_VERSION: The version of OpenSSL. If set to dev, will fetch the branch OPENSSL_BRANCH from GitHub.OPENSSL_BRANCH: The branch that fetch from GitHub, this variable will be ignored if OPENSSL_VERSION is not set to dev.NGTCP2_VERSION: The version of ngtcp2.NGHTTP3_VERSION: The version of nghttp3.NGHTTP2_VERSION: The version of nghttp2.LIBUNISTRING_VERSION: The version of libunistring.LIBIDN2_VERSION: The version of libidn2.LIBSSH2_VERSION: The version of libssh2.ZLIB_VERSION: The version of zlib.BROTLI_VERSION: The version of brotli.ZSTD_VERSION: The version of zstd.LIBPSL_VERSION: The version of libpsl.ARES_VERSION: The version of c-ares.TRURL_VERSION: The version of trurl.ENABLE_TRURL: Compile trurl. The default value is false, set it to true to enable. NOT available for macOS.ENABLE_DEBUG: Enable curl debugging. The default value is false, set it to true to enable. This setting appends --enable-debug to the curl compilation options.The compiled files will be saved in the current release directory.
Starting from cURL 8.20.0, ECH (Encrypted Client Hello) support is enabled by default using OpenSSL 4.x.
Shell
100.0%
Static cURL binary built with the latest features, such as ECH, HTTP3, brotli, and zstd.
The script will automatically retrieve the latest version of each component.
Simply execute it to compile the most recent version.
Included components
curl -V
Download the latest release from the Releases page.
Extract the archive and use it.
The binary is built with GitHub Actions.
Starting from cURL 8.20.0, all builds use OpenSSL 4.x with ECH support enabled by default.
For older releases (before 8.20.0), two versions were provided: one with ECH support and one without.
curl-linux-ARCH-musl-VERSION: binaries for Linux, linked with muslcurl-linux-ARCH-glibc-VERSION: binaries for Linux, linked with glibc, these binaries may have compatibility issues in certain system environmentscurl-linux-ARCH-dev-VERSION: binaries, headers and static library archives for Linux, linked with musl(after curl v8.2.1)curl-macOS-ARCH-VERSION: binaries for macOScurl-macOS-ARCH-dev-VERSION: binaries, headers and static library archives for macOScurl-windows-ARCH-VERSION: binaries for Windowscurl-windows-ARCH-dev-VERSION: binaries, headers and library archives for WindowsFor Linux glibc versions, if your system’s /etc/nsswitch.conf file is configured with passwd: compat, glibc will attempt to load libnss_compat.so, libnss_nis.so, libpthread.so, etc. These libraries may not be compatible with the statically linked glibc, and the program might crash.
Currently, there is no good solution for this issue, except for compiling glibc within the script.
In this case, it is recommended to use the musl version.
This script utilizes clang(glibc) and qbt-musl-cross-make(musl) for cross-compilation on Linux, mstorsjo/llvm-mingw for cross-compilation for Windows, providing support for the following architectures:
sh curl-static-cross.shsupported architectures
ARCHES: "x86_64 aarch64 armv7 armv5 riscv64 s390x mips64 mips64el mips mipsel powerpc64le powerpc i686 loongarch64"
If you need to specify more parameters, run:
docker run --network host --rm -v $(pwd):/mnt -w /mnt \
--name "build-curl-$(date +%Y%m%d-%H%M)" \
-e ARCHES="x86_64 aarch64 armv7 armv5 riscv64 s390x mips64 mips64el mips mipsel powerpc64le powerpc i686 loongarch64" \
-e TLS_LIB="openssl" \
-e LIBC="glibc" \
-e QBT_MUSL_CROSS_MAKE_VERSION="" \
-e CURL_VERSION="" \
-e OPENSSL_VERSION="" \
-e NGTCP2_VERSION="" \
-e NGHTTP3_VERSION="" \
-e NGHTTP2_VERSION="" \
-e ZLIB_VERSION="" \
-e LIBUNISTRING_VERSION="" \
-e LIBIDN2_VERSION="" \
-e LIBPSL_VERSION="" \
-e ARES_VERSION="" \
-e ENABLE_TRURL="true" \
-e TRURL_VERSION="" \
debian:latest sh curl-static-cross.sh
Run the following command to compile:
ARCHES="x86_64 arm64" \
TLS_LIB=openssl \
CURL_VERSION="" \
OPENSSL_VERSION="" \
NGTCP2_VERSION="" \
NGHTTP3_VERSION="" \
NGHTTP2_VERSION="" \
LIBIDN2_VERSION="" \
LIBUNISTRING_VERSION="" \
ZLIB_VERSION="" \
BROTLI_VERSION="" \
ZSTD_VERSION="" \
LIBSSH2_VERSION="" \
LIBPSL_VERSION="" \
ARES_VERSION="" \
bash curl-static-mac.sh
Install Docker, clone this Git repository, navigate to the repository directory, and then execute the following command:
ARCHES="x86_64 i686 aarch64 armv7" sh curl-static-win.sh
script will create a Linux container and cross-compile cURL via LLVM MinGW toolchain.
If you need to specify more parameters, run:
docker run --network host --rm -v $(pwd):/mnt -w /mnt \
--name "build-curl-$(date +%Y%m%d-%H%M)" \
-e ARCHES="x86_64 i686 aarch64 armv7" \
-e TLS_LIB="openssl" \
-e CURL_VERSION="" \
-e OPENSSL_VERSION="" \
-e NGTCP2_VERSION="" \
-e NGHTTP3_VERSION="" \
-e NGHTTP2_VERSION="" \
-e ZLIB_VERSION="" \
-e LIBUNISTRING_VERSION="" \
-e LIBIDN2_VERSION="" \
-e LIBPSL_VERSION="" \
-e ARES_VERSION="" \
-e ENABLE_TRURL="true" \
-e TRURL_VERSION="" \
mstorsjo/llvm-mingw:latest sh curl-static-win.sh
Supported Environment Variables list:
For all VERSION variables, leaving them blank will automatically fetch the latest version.
ARCHES: The list of architectures to compile. You can set one or multiple architectures from the following options: CompileTLS_LIB: The TLS library. Only openssl for now.LIBC: The libc. glibc(default) or musl, only affects Linux.QBT_MUSL_CROSS_MAKE_VERSION: The version of qbt-musl-cross-make, only affects musl. Check the releases on qbt-musl-cross-make/releasesCURL_VERSION: The version of cURL. If set to dev, will fetch the latest source code of branch master from GitHub.OPENSSL_VERSION: The version of OpenSSL. If set to dev, will fetch the branch OPENSSL_BRANCH from GitHub.OPENSSL_BRANCH: The branch that fetch from GitHub, this variable will be ignored if OPENSSL_VERSION is not set to dev.NGTCP2_VERSION: The version of ngtcp2.NGHTTP3_VERSION: The version of nghttp3.NGHTTP2_VERSION: The version of nghttp2.LIBUNISTRING_VERSION: The version of libunistring.LIBIDN2_VERSION: The version of libidn2.LIBSSH2_VERSION: The version of libssh2.ZLIB_VERSION: The version of zlib.BROTLI_VERSION: The version of brotli.ZSTD_VERSION: The version of zstd.LIBPSL_VERSION: The version of libpsl.ARES_VERSION: The version of c-ares.TRURL_VERSION: The version of trurl.ENABLE_TRURL: Compile trurl. The default value is false, set it to true to enable. NOT available for macOS.ENABLE_DEBUG: Enable curl debugging. The default value is false, set it to true to enable. This setting appends --enable-debug to the curl compilation options.The compiled files will be saved in the current release directory.
Starting from cURL 8.20.0, ECH (Encrypted Client Hello) support is enabled by default using OpenSSL 4.x.
Shell
100.0%