diff options
author | Alessandro Ghedini <alessandro@ghedini.me> | 2020-07-16 22:31:21 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-07-18 12:35:21 +0200 |
commit | d10cd52406b6adf41a86a3452efd57dee4876825 (patch) | |
tree | f4073c215e172b1a42226fb659811c6869f5689e /docs | |
parent | ae5b6deb15a42d483a256d095e18fc9518d7153f (diff) | |
download | curl-d10cd52406b6adf41a86a3452efd57dee4876825.tar.gz |
travis: update quiche builds for new boringssl layout
This is required after https://github.com/cloudflare/quiche/pull/593
moved BoringSSL around slightly.
This also means that Go is not needed to build BoringSSL anymore (the
one provided by quiche anyway).
Closes #5691
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HTTP3.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/HTTP3.md b/docs/HTTP3.md index e54e5d028..44381ae10 100644 --- a/docs/HTTP3.md +++ b/docs/HTTP3.md @@ -117,8 +117,8 @@ Build quiche and BoringSSL: % git clone --recursive https://github.com/cloudflare/quiche % cd quiche % cargo build --release --features pkg-config-meta,qlog - % mkdir deps/boringssl/lib - % ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/lib/ + % mkdir deps/boringssl/src/lib + % ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/src/lib/ Build curl: @@ -126,7 +126,7 @@ Build curl: % git clone https://github.com/curl/curl % cd curl % ./buildconf - % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-ssl=$PWD/../quiche/deps/boringssl --with-quiche=$PWD/../quiche/target/release --enable-alt-svc + % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-ssl=$PWD/../quiche/deps/boringssl/src --with-quiche=$PWD/../quiche/target/release --enable-alt-svc % make ## Run |