diff options
author | Thomas Faingnaert <thomas.faingnaert@hotmail.com> | 2019-12-28 23:38:24 +0100 |
---|---|---|
committer | Thomas Faingnaert <thomas.faingnaert@hotmail.com> | 2019-12-28 23:38:24 +0100 |
commit | 6171be8b865c33463786fc3b14c3b11ae84c4b23 (patch) | |
tree | 0a33c5d7ff25d4013f8417800acae831e9ae4b76 /installer | |
parent | 7a3d9a2be23dca9aeee503c20be79395174ec46a (diff) | |
download | vim-lsp-settings-6171be8b865c33463786fc3b14c3b11ae84c4b23.tar.gz vim-lsp-settings-6171be8b865c33463786fc3b14c3b11ae84c4b23.tar.bz2 vim-lsp-settings-6171be8b865c33463786fc3b14c3b11ae84c4b23.zip |
Update Windows installation
Diffstat (limited to 'installer')
-rw-r--r-- | installer/install-clangd.cmd | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/installer/install-clangd.cmd b/installer/install-clangd.cmd index bab1730..3ffa48a 100644 --- a/installer/install-clangd.cmd +++ b/installer/install-clangd.cmd @@ -13,6 +13,11 @@ cd /d "%server_dir%" echo Downloading clang and LLVM... curl -L -o LLVM-9.0.0-win64.exe "http://releases.llvm.org/9.0.0/LLVM-9.0.0-win64.exe" echo Running setup... -echo Make sure to add clangd to your PATH -LLVM-9.0.0-win64.exe + +REM Run setup as regular user to avoid a UAC popup +set __COMPAT_LAYER=RUNASINVOKER +md tmp +LLVM-9.0.0-win64.exe /S /D=%cd%\tmp +copy tmp\bin\clangd.exe clangd.exe del LLVM-9.0.0-win64.exe +rd /Q /S %cd%\tmp |