Compare commits

...

19 Commits

Author SHA1 Message Date
Travis Burtrum 94cc8aa442
curl 8.7.1
moparisthebest/static-curl/pipeline/head This commit looks good Details
2024-03-27 23:10:56 -04:00
Travis Burtrum 66625fb6f7 Disable libpsl for now
moparisthebest/static-curl/pipeline/head This commit looks good Details
2024-03-27 03:02:39 -04:00
Travis Burtrum 64d5511d1c curl 8.6.0
moparisthebest/static-curl/pipeline/head There was a failure building this commit Details
2024-03-26 19:14:44 -04:00
Travis Burtrum 577ac478eb
curl 8.5.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-12-12 21:34:26 -05:00
Travis Burtrum a86e6437e7 curl 8.4.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-10-11 10:34:11 -04:00
Travis Burtrum 9eaa52035a curl 8.3.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-09-26 00:30:45 -04:00
Travis Burtrum c63121a242 curl 8.2.1
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-08-19 01:19:18 -04:00
Travis Burtrum 2ff097f26e curl 8.1.2
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-07-07 00:54:19 -04:00
Travis Burtrum 78abf9e15c curl 8.0.1 - Happy 25th Birthday!
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-03-20 09:58:14 -04:00
Travis Burtrum 16d6464e9e curl 7.88.1
moparisthebest/static-curl/pipeline/head This commit looks good Details
2023-02-20 11:36:23 -05:00
Travis Burtrum aa2336a78d curl 7.87.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-12-21 11:33:13 -05:00
Travis Burtrum d17a1d8e4d curl 7.86.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-10-26 09:13:33 -04:00
Travis Burtrum 787ce283a4 curl 7.85.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-09-08 22:55:51 -04:00
Travis Burtrum 71dab8c01f curl 7.84.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-07-14 01:38:53 -04:00
Travis Burtrum a9177ae6f1 curl 7.83.1
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-05-11 08:16:13 -04:00
Travis Burtrum 9e3047c979 curl 7.83.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-04-29 08:21:39 -04:00
Travis Burtrum 382793c189 curl 7.82.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-03-05 11:28:09 -05:00
Travis Burtrum 7f0eec176f curl 7.81.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2022-01-09 20:56:28 -05:00
Travis Burtrum 137c4531dc curl 7.80.0
moparisthebest/static-curl/pipeline/head This commit looks good Details
2021-11-11 09:56:21 -05:00
2 changed files with 4 additions and 3 deletions

View File

@ -9,6 +9,7 @@ Grab the [latest release](https://github.com/moparisthebest/static-curl/releases
- [curl-i386](https://github.com/moparisthebest/static-curl/releases/latest/download/curl-i386)
- [curl-aarch64](https://github.com/moparisthebest/static-curl/releases/latest/download/curl-aarch64)
- [curl-armv7](https://github.com/moparisthebest/static-curl/releases/latest/download/curl-armv7)
- [curl-armhf](https://github.com/moparisthebest/static-curl/releases/latest/download/curl-armhf)
- [curl-ppc64le](https://github.com/moparisthebest/static-curl/releases/latest/download/curl-ppc64le)
Static binaries for windows are provided directly by [curl](https://curl.haxx.se/windows/) itself.

View File

@ -5,7 +5,7 @@
# docker run --rm -v $(pwd):/tmp -w /tmp -e ARCH=aarch64 multiarch/alpine:aarch64-latest-stable /tmp/build.sh
# docker run --rm -v $(pwd):/tmp -w /tmp -e ARCH=ARCH_HERE ALPINE_IMAGE_HERE /tmp/build.sh
CURL_VERSION='7.79.1'
CURL_VERSION='8.7.1'
[ "$1" != "" ] && CURL_VERSION="$1"
@ -32,7 +32,7 @@ tar xzf curl-${CURL_VERSION}.tar.gz
cd curl-${CURL_VERSION}/
# dependencies to build curl
apk add build-base clang openssl-dev nghttp2-dev nghttp2-static libssh2-dev libssh2-static
apk add build-base clang openssl-dev nghttp2-dev nghttp2-static libssh2-dev libssh2-static perl
# these are missing on at least armhf
apk add openssl-libs-static zlib-static || true
@ -49,7 +49,7 @@ export CC=clang
# set up any required curl options here
#LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static --disable-libcurl-option --without-brotli --disable-manual --disable-unix-sockets --disable-dict --disable-file --disable-gopher --disable-imap --disable-smtp --disable-rtsp --disable-telnet --disable-tftp --disable-pop3 --without-zlib --disable-threaded-resolver --disable-ipv6 --disable-smb --disable-ntlm-wb --disable-tls-srp --disable-crypto-auth --without-ngtcp2 --without-nghttp2 --disable-ftp --disable-mqtt --disable-alt-svc --without-ssl
LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static --disable-ldap --enable-ipv6 --enable-unix-sockets --with-ssl --with-libssh2
LDFLAGS="-static" PKG_CONFIG="pkg-config --static" ./configure --disable-shared --enable-static --disable-ldap --enable-ipv6 --enable-unix-sockets --with-ssl --with-libssh2 --disable-docs --disable-manual --without-libpsl
make -j4 V=1 LDFLAGS="-static -all-static"