We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdee49c + 16a9ab2 commit 56d8598Copy full SHA for 56d8598
COMPILING.md
@@ -90,11 +90,12 @@ files.
90
```
91
92
On macOS >10.14, the build will fail unless you explicitly specify
93
- the full path to the compiler. This issue is being tracked
94
- [here](https://github.com/diffblue/cbmc/issues/4956). The invocation thus
+ both the C and C++ compilers to avoid C++ standard library not found
+ errors. This issue is being tracked
95
+ [here](https://github.com/diffblue/cbmc/issues/8683). The invocation thus
96
looks like this:
97
- cmake -S. -Bbuild -DCMAKE_C_COMPILER=/usr/bin/clang
98
+ cmake -S. -Bbuild -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
99
100
101
Generally it is not necessary to manually specify individual compiler or
0 commit comments