step0、参考
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + gzip |
编译时 | cmake、ninja、gcc / GCC | Clang / LLVM |
运行时 | glibc ( libc.so 、ld-linux-x86-64.so ) |
step2、使用curl命令下载brotli
源码包 ( )
curl -LO https://github.com/google/brotli/archive/v1.0.7/brotli-v1.0.7.tar.gz
curl -LO https://mirrors.tuna.tsinghua.edu.cn/debian/pool/main/b/brotli/brotli_1.0.7.orig.tar.gz
step3、使用tar解压brotli
源码包
tar vxf brotli-v1.0.7.tar.gz
step4、进入brotli-1.0.7
目录
cd brotli-1.0.7
step5、查看brotli-1.0.7
目录中的内容
step6、使用cmake命令配置编译参数
cmake [option]... -D<变量>=<值> -S <sourceDIR> -B <buildDIR>
本软件特有的变量 | 类型 | 默认值 | 说明 |
---|---|---|---|
BUILD_TESTING | BOOL | ON | 是否编译测试代码 |
示例:
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-G Ninja \
-Wno-dev \
-S . \
-B build.d
step7、使用cmake命令进行编译
cmake --build build.d
step8、使用cmake命令进行安装
cmake --install build.d