Skip to content

Commit

Permalink
8247676: vcruntime140_1.dll is not needed on 32-bit Windows
Browse files Browse the repository at this point in the history
Backport-of: bcc668b77f0a0c22db49ef048286a9df5c04a308
  • Loading branch information
gdams authored and RealCLanger committed Sep 2, 2022
1 parent 2548ed3 commit 78ba1e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/autoconf/toolchain_windows.m4
Expand Up @@ -701,7 +701,7 @@ AC_DEFUN([TOOLCHAIN_SETUP_VS_RUNTIME_DLLS],
AC_ARG_WITH(vcruntime-1-dll, [AS_HELP_STRING([--with-vcruntime-1-dll],
[path to microsoft C++ runtime dll (vcruntime*_1.dll) (Windows only) @<:@probed@:>@])])
if test "x$VCRUNTIME_1_NAME" != "x"; then
if test "x$VCRUNTIME_1_NAME" != "x" && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
if test "x$with_vcruntime_1_dll" != x; then
# If given explicitly by user, do not probe. If not present, fail directly.
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL($VCRUNTIME_1_NAME, [$with_vcruntime_1_dll],
Expand Down

0 comments on commit 78ba1e5

Please sign in to comment.