This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Mostly just https://github.com/curl/curl/blob/master/docs/HTTP3.md#quiche-version | |
| # with the specific requirements for debian/kali | |
| sudo apt-get install -y git build-essential libtool libunwind-dev autoconf cmake golang cargo | |
| 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/ |