lsquic + boringssl编译
git clone https://github.com/google/boringssl.git
git clone https://github.com/litespeedtech/lsquic.git
mkdir -p ${PWD}/lsquic/openssl
cd boringssl
git checkout 0.20250701.0 && mkdir build && cd build
cmake .. \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
-DCMAKE_C_FLAGS="-O2 -fPIC" \
-DCMAKE_CXX_FLAGS="-O2 -fPIC" \
-DCMAKE_INSTALL_PREFIX=${PWD}/../../lsquic/openssl
make -j8 && make install
cd ../../lsquic
git checkout v4.3.1
git submodule update --init --recursive
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j8 && sudo make install