mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 11:07:10 +01:00
[bootstrap-vcpkg.sh] Find g++-8. Fixes #3486.
This commit is contained in:
parent
87e7728ff3
commit
8ce9265485
@ -157,7 +157,9 @@ selectCXX()
|
||||
|
||||
if [ "x$CXX" = "x" ]; then
|
||||
CXX=g++
|
||||
if which g++-7 >/dev/null 2>&1; then
|
||||
if which g++-8 >/dev/null 2>&1; then
|
||||
CXX=g++-8
|
||||
elif which g++-7 >/dev/null 2>&1; then
|
||||
CXX=g++-7
|
||||
elif which g++-6 >/dev/null 2>&1; then
|
||||
CXX=g++-6
|
||||
|
Loading…
x
Reference in New Issue
Block a user