Add libc++ package

This commit is contained in:
deadc0de128 2023-03-06 06:27:42 +00:00 committed by GitHub
parent 6e80af98bd
commit af2289a68e
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,6 +124,7 @@ runs:
$pkg_clang = 'clang' $pkg_clang = 'clang'
$pkg_llvm = 'llvm' $pkg_llvm = 'llvm'
$pkg_gxx = 'g++' $pkg_gxx = 'g++'
$pkg_libc = 'libc++'
if (!$latest) { if (!$latest) {
$pkg_version = Format-UpstreamVersion $version $pkg_version = Format-UpstreamVersion $version
@ -131,6 +132,7 @@ runs:
$pkg_clang = "$pkg_clang-$pkg_version" $pkg_clang = "$pkg_clang-$pkg_version"
$pkg_llvm = "$pkg_llvm-$pkg_version" $pkg_llvm = "$pkg_llvm-$pkg_version"
$pkg_libc = "$pkg_libc-$pkg_version-dev"
$clang = "$clang-$pkg_version" $clang = "$clang-$pkg_version"
$clangxx = "$clangxx-$pkg_version" $clangxx = "$clangxx-$pkg_version"
@ -138,7 +140,7 @@ runs:
if (!$x64) { if (!$x64) {
$pkg_gxx = 'g++-multilib' $pkg_gxx = 'g++-multilib'
} }
$packages = $pkg_clang,$pkg_llvm,$pkg_gxx $packages = $pkg_clang,$pkg_llvm,$pkg_libc,$pkg_gxx
Install-Package $packages Install-Package $packages
} elseif ($cygwin_host) { } elseif ($cygwin_host) {