File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,12 @@ files.
9090 ```
9191
9292 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
93+ both the C and C++ compilers to avoid C++ standard library not found
94+ errors. This issue is being tracked
95+ [here](https://github.com/diffblue/cbmc/issues/8683). The invocation thus
9596 looks like this:
9697 ```
97- cmake -S. -Bbuild -DCMAKE_C_COMPILER=/usr/bin/ clang
98+ cmake -S. -Bbuild -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
9899 ```
99100
100101 Generally it is not necessary to manually specify individual compiler or
You can’t perform that action at this time.
0 commit comments