8248238: Implementation: JEP 388: Windows AArch64 Support

Co-authored-by: Monica Beckwith <mbeckwit@openjdk.org>
Co-authored-by: Ludovic Henry <luhenry@openjdk.org>
Co-authored-by: Bernhard Urban-Forster <burban@openjdk.org>
Reviewed-by: dholmes, cjplummer, aph, ihse
This commit is contained in:
Monica Beckwith 2020-10-05 03:21:39 +00:00 committed by David Holmes
parent 1c2754bfe3
commit 9604ee8269
62 changed files with 2440 additions and 358 deletions

View file

@ -569,6 +569,8 @@ GetJavaProperties(JNIEnv* env)
sprops.os_arch = "amd64";
#elif defined(_X86_)
sprops.os_arch = "x86";
#elif defined(_M_ARM64)
sprops.os_arch = "aarch64";
#else
sprops.os_arch = "unknown";
#endif