diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-02 18:06:35 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-02 18:06:35 +0300 |
commit | f46843a6d8722fc243ae1cf3faba4410cd6506f4 (patch) | |
tree | d31ded91525ff654fa8a3caf17e106e40fbf2376 | |
parent | Cygwin: fix LLVM symlinks also (diff) | |
download | setup-clang-f46843a6d8722fc243ae1cf3faba4410cd6506f4.tar.gz setup-clang-f46843a6d8722fc243ae1cf3faba4410cd6506f4.zip |
install LLVM also
-rw-r--r-- | action.yml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -126,9 +126,9 @@ runs: if ($linux_host) { if ($x64) { - $pkgs = 'clang','g++' + $pkgs = 'clang','g++','llvm' } else { - $pkgs = 'clang','g++-multilib' + $pkgs = 'clang','g++-multilib','llvm' } Install-Package $pkgs @@ -148,7 +148,7 @@ runs: # C++ app cannot be compiled as of December 2020. Also, libstdc++ # is required; it's simpler to install gcc-g++ for all the # 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 # convenient to make proper executables instead so that they can be |