Ubuntu18.04安装google benchmark记录

商嘉木
2023-12-01

一、问题描述

最近在做一个C++项目,一个源文件中有语句

#include "benchmark/benchmark.h"

编译器提示“找不到该头文件”。出现这个问题的原因是本机上没有安装google benchmark测试库。

二、安装google benchmark

在github 站点https://github.com/google/benchmark上有详细的安装步骤。搬运过来,就是如下几条命令:

git clone https://github.com/google/benchmark.git #git拉取源代码文件夹
cd benchmark  #进入源代码文件夹
cmake -E make_directory "build"  #创建build目录,存放build步骤的输出
cmake -E chdir "build" cmake -DBENCHMARK_DOWNLOAD_DEPENDENCIES=on -DCMAKE_BUILD_TYPE=Release ../  #使用cmake生成build文件,并下载任何可用的依赖。
cmake --build "build" --config Release
cmake -E chdir "build" ctest --build-config Release  #进行安装测试
sudo cmake --build "build" --config Release --target install  #在全局安装google benchmark
 类似资料: