Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 811 Bytes

File metadata and controls

27 lines (22 loc) · 811 Bytes

Jetty native quiche builds

This project is providing the native builds of the Cloudflare Quiche (https://github.com/cloudflare/quiche) library used by the Jetty Project's HTTP/3 implementation.

Current quiche version

0.29.3

Current targets

  • Linux x86-64
  • Linux aarch64
  • Macos x86-64
  • Macos aarch64
  • Windows x86-64

How Quiche was checked out and built

git clone --recursive https://github.com/cloudflare/quiche 0.29.3
cd 0.29.3
git checkout -b tag-0.29.3 tags/0.29.3
cargo build --features ffi,qlog

Resulting library: ls target/debug/libquiche.(so|dylib) or dir target\debug\quiche.dll

Notes:

  • Linux libraries were stripped with: strip libquiche.so
  • Macos libraries were stripped with: strip -x libquiche.dylib
  • Windows libraries were left untouched after build