build libphonenumber for current host

step1、安装依赖

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

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

curl -L -o libphonenumber-8.12.20.tar.gz https://github.com/google/libphonenumber/archive/refs/tags/v8.12.20.tar.gz

step3、使用tar解压libphonenumber源码包

tar vxf libphonenumber-8.12.20.tar.gz

step4、进入libphonenumber-8.12.20目录

cd libphonenumber-8.12.20

step5、查看libphonenumber-8.12.20目录的内容

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

cmake [option]... -D<变量>=<值> -S <sourceDIR> -B <buildDIR>
本软件特有的变量类型默认值说明
TESTBOOLOFF是否编译测试代码,开启后依赖googletest
JPEG_INCLUDE_DIRPATH指定libjpeg-turbo头文件所在目录
JPEG_LIBRARY_RELEASEFILEPATH指定libjpeg.{a | so | dylib}的路径

示例:

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

step6、使用make命令编译、安装

make --directory=build install