diff --git a/content/dev/build/windows/_index.en.md b/content/dev/build/windows/_index.en.md index e2aa37b..aab2543 100644 --- a/content/dev/build/windows/_index.en.md +++ b/content/dev/build/windows/_index.en.md @@ -12,14 +12,15 @@ The command line commands here must be run in git-bash not command prompt or you ### C++ build environment Download [msvc](https://visualstudio.microsoft.com/) and install. -Select `Windows` as Developer machine OS and check `C++`, then download Visual Studo Community version and install. The installation may take a while. +Select `Windows` as Developer machine OS and check `C++`, then download Visual Studio Community version and install. The installation may take a while. ### Rust develop environment + Download [rustup-init.exe](https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe) and run it as administrator to install `rust`. ### vcpkg -Go to the folder you want to clone vcpkg and use [git-bash](https://git-scm.com/download/win) to run the following commands, download `vcpkg`, install 64bit version of `libvpx`, `libyuv` and `opus`. +Go to the folder you want to clone vcpkg and use [git-bash](https://git-scm.com/download/win) to run the following commands, download `vcpkg`, install 64-bit version of `libvpx`, `libyuv` and `opus`. If you don't have `git` installed, get `git` [here](https://git-scm.com/download/win). ```shell @@ -32,21 +33,20 @@ If you don't have `git` installed, get `git` [here](https://git-scm.com/download vcpkg/vcpkg install libvpx:x64-windows-static libyuv:x64-windows-static opus:x64-windows-static aom:x64-windows-static ``` -Add System environment variable `VCPKG_ROOT`=`\vcpkg`. The `` should be the location you chose above to clone `vcpkg`. +Add System environment variable `VCPKG_ROOT`=`\vcpkg`. The `` should be the location you choose above to clone `vcpkg`. ![](/docs/en/dev/build/windows/images/env.png) -### sciter +### Sciter -Desktop versions use [sciter](https://sciter.com/) for GUI, please download [sciter.dll](https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x64/sciter.dll) +Desktop versions use [Sciter](https://sciter.com/) for GUI, please download [sciter.dll](https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x64/sciter.dll) -### llvm +### LLVM -rust-bindgen depends on clang, download [llvm](https://github.com/llvm/llvm-project/releases) and install, add System environment variable `LIBCLANG_PATH`=`/bin`. +rust-bindgen depends on clang, download [LLVM](https://github.com/llvm/llvm-project/releases) and install, add System environment variable `LIBCLANG_PATH`=`/bin`. You can download 15.02 of the LLVM binaries here: [64-bit](https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.2/LLVM-15.0.2-win64.exe) / [32-bit](https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.2/LLVM-15.0.2-win32.exe) - ## Build ### Default