Add clang support.
This commit is contained in:
parent
3fad113178
commit
e559f9674d
27 changed files with 84 additions and 63 deletions
20
infra/build_configs/README.md
Normal file
20
infra/build_configs/README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Compiler Support
|
||||
|
||||
## Linux
|
||||
|
||||
### GCC
|
||||
gcc 11.3.0
|
||||
|
||||
### clang
|
||||
|
||||
```
|
||||
sudo apt-get install clang
|
||||
mkdir build_clang
|
||||
cd build_clang
|
||||
export CC=/usr/bin/clang
|
||||
export CXX=/usr/bin/clang++
|
||||
cmake $PATH_TO_SOURCE
|
||||
make
|
||||
```
|
||||
|
||||
Version 14.0
|
Loading…
Add table
Add a link
Reference in a new issue