install LLVM also
This commit is contained in:
parent
50fad18261
commit
f46843a6d8
1 changed files with 3 additions and 3 deletions
|
@ -126,9 +126,9 @@ runs:
|
||||||
|
|
||||||
if ($linux_host) {
|
if ($linux_host) {
|
||||||
if ($x64) {
|
if ($x64) {
|
||||||
$pkgs = 'clang','g++'
|
$pkgs = 'clang','g++','llvm'
|
||||||
} else {
|
} else {
|
||||||
$pkgs = 'clang','g++-multilib'
|
$pkgs = 'clang','g++-multilib','llvm'
|
||||||
}
|
}
|
||||||
Install-Package $pkgs
|
Install-Package $pkgs
|
||||||
|
|
||||||
|
@ -148,7 +148,7 @@ runs:
|
||||||
# C++ app cannot be compiled as of December 2020. Also, libstdc++
|
# C++ app cannot be compiled as of December 2020. Also, libstdc++
|
||||||
# is required; it's simpler to install gcc-g++ for all the
|
# is required; it's simpler to install gcc-g++ for all the
|
||||||
# dependencies.
|
# dependencies.
|
||||||
Install-Package clang libiconv-devel gcc-g++
|
Install-Package clang gcc-g++ libiconv-devel llvm
|
||||||
|
|
||||||
# clang/clang++ are Cygwin symlinks, pointing to clang-X.exe. It's
|
# clang/clang++ are Cygwin symlinks, pointing to clang-X.exe. It's
|
||||||
# convenient to make proper executables instead so that they can be
|
# convenient to make proper executables instead so that they can be
|
||||||
|
|
Loading…
Add table
Reference in a new issue