summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@cloudflare.com>2021-11-30 13:37:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2021-12-03 16:38:54 +0100
commit3199eb25dc20c15b01f1e5aa4b38195ac042ff61 (patch)
tree8334151176316fcc53e602691089f0757f11ccbd /docs
parentc8a3046555378f81b22d51e3887df8a5cf1ab5bf (diff)
downloadcurl-3199eb25dc20c15b01f1e5aa4b38195ac042ff61.tar.gz
HTTP3: update quiche build instructions
The repo repo was re-organized a bit, so the build instructions need to be updated. Closes #8076
Diffstat (limited to 'docs')
-rw-r--r--docs/HTTP3.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/HTTP3.md b/docs/HTTP3.md
index 4853e8da8..23a2d073b 100644
--- a/docs/HTTP3.md
+++ b/docs/HTTP3.md
@@ -120,9 +120,9 @@ Build quiche and BoringSSL:
% git clone --recursive https://github.com/cloudflare/quiche
% cd quiche
- % cargo build --release --features ffi,pkg-config-meta,qlog
- % mkdir deps/boringssl/src/lib
- % ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/src/lib/
+ % cargo build --package quiche --release --features ffi,pkg-config-meta,qlog
+ % mkdir quiche/deps/boringssl/src/lib
+ % ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) quiche/deps/boringssl/src/lib/
Build curl:
@@ -130,7 +130,7 @@ Build curl:
% git clone https://github.com/curl/curl
% cd curl
% autoreconf -fi
- % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-openssl=$PWD/../quiche/deps/boringssl/src --with-quiche=$PWD/../quiche/target/release
+ % ./configure LDFLAGS="-Wl,-rpath,$PWD/../quiche/target/release" --with-openssl=$PWD/../quiche/quiche/deps/boringssl/src --with-quiche=$PWD/../quiche/target/release
% make
% make install