We do not use the CC compiler.

This commit is contained in:
Daniel Lemire 2020-04-23 10:14:19 -04:00
parent 87acab0846
commit cc7c8d92da
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ linux way:
``` ```
mkdir build # if necessary mkdir build # if necessary
cd build cd build
cmake .. -DCMAKE_CXX_COMPILER=g++ -DCMAKE_CC_COMPILER=gcc # or cmake .. -DCMAKE_CXX_COMPILER=g++ # or
cmake .. -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CC_COMPILER=clang cmake .. -DCMAKE_CXX_COMPILER=clang++
make -j make -j
``` ```