build cpu_features for current host

step1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + gzip
编译时cmakeninjagcc / GCC | Clang / LLVM
运行时
  • glibc ( libc.solibpthread.sold-linux-x86-64.so )

step2、使用curl命令下载cpu_features源码包 (

curl -L -o cpu_features-0.5.0.tar.gz https://github.com/google/cpu_features/archive/v0.5.0.tar.gz

step3、使用tar解压cpu_features源码包

tar vxf cpu_features-0.5.0.tar.gz

step4、进入cpu_features-0.5.0目录

cd cpu_features-0.5.0

step5、查看cpu_features-0.5.0目录的内容

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

cmake [option]... -D<变量>=<值> -S <sourceDIR> -B <buildDIR>

示例:

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