Add clang support.

This commit is contained in:
James Grogan 2023-01-23 11:32:18 +00:00
parent 3fad113178
commit e559f9674d
27 changed files with 84 additions and 63 deletions

View 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