diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-02 17:18:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-01-02 17:24:59 +0300 |
commit | 50fad182619496c7a0486511313568326459db85 (patch) | |
tree | e30b3244d5777bc9c7559758b19638607ce00a8a | |
parent | code style (diff) | |
download | setup-clang-50fad182619496c7a0486511313568326459db85.tar.gz setup-clang-50fad182619496c7a0486511313568326459db85.zip |
Cygwin: fix LLVM symlinks also
-rw-r--r-- | action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ runs: # clang/clang++ are Cygwin symlinks, pointing to clang-X.exe. It's # convenient to make proper executables instead so that they can be # called from Windows' command prompt. - find.exe /usr/bin -iname 'clang*' -type l | %{ Fix-CygwinLink $_ } + find.exe /usr/bin -type l -a '-(' -iname 'clang*' -o -iname 'llvm*' '-)' | %{ Fix-CygwinLink $_ } Link-Exe -Exe clang -LinkName cc Link-Exe -Exe clang++ -LinkName c++ |