From db3e74fa9c683f2fdd7f0244cedc0fbf3f9478f6 Mon Sep 17 00:00:00 2001 From: Joel Pelaez Jorge Date: Mon, 14 Oct 2019 18:04:05 -0500 Subject: Fix CMake checks for Apple Clang 11.0 on macOS 10.15 (#8580) * Fix CMake checks for Apple Clang 11.0 on macOS 10.15 * Use clang++ instance clang if allowAppleClang is enabled --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index d89d5a15b..55859d1f8 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -244,7 +244,7 @@ else fi if [ "$os" = "osx" ]; then if [ "$vcpkgAllowAppleClang" = "true" ] ; then - CXX=clang + CXX=clang++ else selectCXX CXX || exit 1 fi -- cgit v1.2.3