From 0c9f3bd22c0f281cbe04dd4b4f2e474acc339577 Mon Sep 17 00:00:00 2001 From: Peter Palaga Date: Thu, 30 Jul 2020 15:57:31 +0200 Subject: [PATCH] Document the mitigation of 'VCRUNTIME140.dll was not found' on Windows --- README.adoc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index a17d4c02..a351b894 100644 --- a/README.adoc +++ b/README.adoc @@ -24,9 +24,13 @@ mvnd --install # <5> * Download `mvnd-dist.zip` * Unpack it to `~/.m2/mvnd/` * Create `~/.m2/mvnd.properties` ++ +If your are on Windows and see a message that `VCRUNTIME140.dll was not found`, you need to install +`vc_redist.x64.exe` from https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads. +See https://github.com/oracle/graal/issues/1762 for more information. Optionally, you can open `~/.m2/mvnd.properties` and set the `java.home` property in case you do not want to bother with setting `JAVA_HOME` environment variable. - ++ Now you can test whether `mvnd` works: [source,shell]