//TODO Clean this up. Because of bug JDK-8131321 the opening of the PE file fails in WindowsPlatform.cpp on the check to
// if (pNTHeader->Signature == IMAGE_NT_SIGNATURE)
#ifdef _WIN64
if (FilePath::FileExists(_T("msvcr100.dll")) == true) {
javaLibrary.AddDependency(_T("msvcr100.dll"));
}
#else
javaLibrary.AddDependencies(platform.FilterOutRuntimeDependenciesForPlatform(platform.GetLibraryImports(package.GetJVMLibraryFileName())));
#endif
// if (pNTHeader->Signature == IMAGE_NT_SIGNATURE)
#ifdef _WIN64
if (FilePath::FileExists(_T("msvcr100.dll")) == true) {
javaLibrary.AddDependency(_T("msvcr100.dll"));
}
#else
javaLibrary.AddDependencies(platform.FilterOutRuntimeDependenciesForPlatform(platform.GetLibraryImports(package.GetJVMLibraryFileName())));
#endif
- relates to
-
JDK-8183981 Use Resources from jdk.packager.jmod
- Closed