From 01b1b13344c303016fe7de69ac9fdb3d762b2e66 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Mon, 20 Jun 2016 12:16:14 -0700 Subject: [PATCH] Install gcc-c++ instead of just gcc on CentOS --- build.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.psm1 b/build.psm1 index bdd94bd357..d01136e2ae 100644 --- a/build.psm1 +++ b/build.psm1 @@ -400,7 +400,7 @@ function Start-PSBootstrap { # Install ours and .NET's dependencies sudo apt-get install -y -qq curl make g++ cmake libc6 libgcc1 libstdc++6 libcurl3 libgssapi-krb5-2 libicu52 liblldb-3.6 liblttng-ust0 libssl1.0.0 libunwind8 libuuid1 zlib1g clang-3.5 } elseif ($LinuxInfo.ID -match 'centos' -and $LinuxInfo.VERSION_ID -match '7') { - sudo yum install -y -q curl make gcc cmake glibc libgcc libstdc++ libcurl krb5-libs libicu lldb openssl-libs libunwind libuuid zlib clang + sudo yum install -y -q curl make gcc-c++ cmake glibc libgcc libstdc++ libcurl krb5-libs libicu lldb openssl-libs libunwind libuuid zlib clang } else { Write-Warning "This script only supports Ubuntu 14.04 and CentOS 7, you must install dependencies manually!" }