| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 | ||
| 1 个月前 |
Dependencies
Compiler
gcc 10.3.1
Google Test
https://github.com/google/googletest (2024 July 13 version)
git clone https://github.com/google/googletest.git
build gcc version lib
cd googletest
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=your_path_to_install_lib
make -j
make install
build clang version lib
cd googletest
mkdir -p build
cd build
export PATH=your_path/BiShengCompiler-3.2.0-aarch64-linux/bin:$PATH
export CC=clang
export CXX=clang++
cmake .. -DCMAKE_INSTALL_PREFIX=your_path_to_install_lib
make -j
make install