diff options
| author | Joel Pelaez Jorge <joel.pelaez.jorge@gmail.com> | 2019-10-14 18:04:05 -0500 |
|---|---|---|
| committer | dan-shaw <51385773+dan-shaw@users.noreply.github.com> | 2019-10-14 16:04:05 -0700 |
| commit | db3e74fa9c683f2fdd7f0244cedc0fbf3f9478f6 (patch) | |
| tree | 3f1cf2cc03db89f51e4059ada127d9e47fcff9eb /scripts | |
| parent | 96e55fb3c2478c38e7f16ab6f50683629643e34a (diff) | |
| download | vcpkg-db3e74fa9c683f2fdd7f0244cedc0fbf3f9478f6.tar.gz vcpkg-db3e74fa9c683f2fdd7f0244cedc0fbf3f9478f6.zip | |
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
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
