Windows build instructions [skip ci]
This commit is contained in:
parent
55c2fcfb75
commit
a7577da746
1 changed files with 8 additions and 2 deletions
10
doc/build.md
10
doc/build.md
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
- Install [lein](https://leiningen.org/) for producing uberjars
|
||||
- Download [GraalVM](https://www.graalvm.org/downloads/). Currently we use *java11-20.1.0*.
|
||||
- For Windows, installing Visual Studio Code 2019 with the "Desktop development
|
||||
with C++" workload is recommended.
|
||||
- Set `$GRAALVM_HOME` to the GraalVM distribution directory. On macOS this can look like:
|
||||
|
||||
``` shell
|
||||
|
|
@ -16,9 +18,13 @@
|
|||
export GRAALVM_HOME=~/Downloads/graalvm-ce-java11-20.1.0
|
||||
```
|
||||
|
||||
On Windows:
|
||||
On Windows, from the Visual Studio 2019 Developer Command Prompt or `cmd.exe` (not Powershell):
|
||||
```
|
||||
set GRAALVM_HOME=C:\Users\IEUser\Downloads\graalvm-ce-java11-20.1.0
|
||||
set GRAALVM_HOME=%USERPROFILE%\Downloads\graalvm-ce-java11-20.1.0
|
||||
```
|
||||
If you are not running from the Developer Command Prompt, you will need to set additional environment variables using:
|
||||
```
|
||||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
|
||||
```
|
||||
|
||||
## Clone repository
|
||||
|
|
|
|||
Loading…
Reference in a new issue