build nghttp3 for current host

step1、安装依赖

下载时git
编译时cmakeninjagcc / GCC | Clang / LLVM
运行时glibc ( libc.sold-linux-x86-64.so )

step2、使用git命令下载nghttp3源码

git clone https://github.com/ngtcp2/nghttp3.git

step3、进入nghttp3目录

cd nghttp3

step4、查看nghttp3目录中的内容

step5、使用cmake命令配置编译参数

cmake [option]... -D<变量>=<值> -S <sourceDIR> -B <buildDIR>
本软件特有的变量类型默认值说明
ENABLE_WERRORBOOLOFF是否将警告当作错误
ENABLE_DEBUGBOOLOFF
调试选项。
ON: 相当于CPPFLAGS += "-DDENUG"
OFF:相当于CPPFLAGS += "-DNDENUG"
ENABLE_ASANBOOLOFF是否开启编译器Address Sanitizer特性
ENABLE_LIB_ONLYBOOLOFF
ON: 只编译lib
OFF:编译libexamples

示例:

cmake \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -G Ninja \
    -Wno-dev \
    -S . \
    -B build.d

step6、使用gmake编译并安装

make --directory=build install