diff --git a/README.md b/README.md index 91200da..6c9a5a2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ All images contain: * valgrind * kcov-v42 for compilers supporting C++17, kcov-v41 otherwise * catch2-2.13.10 -* catch2-3.7.0 +* catch2-3.7.1 * fmt-8.1.1 * fmt-9.1.0 * fmt-10.2.1 @@ -19,7 +19,7 @@ All images contain: * benchmark-v1.8.5 The installed libraries are located under -`/usr/local/lib/c++{11,14,17,20,23}{libc++}` and they all have `CMake` packages, +`/usr/local/lib/c++{11,14,17,20,23,26}{libc++}` and they all have `CMake` packages, so for example, to build with C++17 and libc++, run `cmake` for your program with: ```l diff --git a/common/install-catch2-3.sh b/common/install-catch2-3.sh index 412e08c..5c71f3c 100755 --- a/common/install-catch2-3.sh +++ b/common/install-catch2-3.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -eou pipefail -VERSION="3.7.0" +VERSION="3.7.1" CXX=$1 CXX_STANDARDS="$2"