Issue with 64-bit application execution under wine (missing

Questions about Wine on Linux
Locked
atg
Newbie
Newbie
Posts: 2
Joined: Tue Jun 18, 2019 1:11 pm

Issue with 64-bit application execution under wine (missing

Post by atg »

Hello, I face the following errors when I try to run 64-bit console application with wine:

Code: Select all

002a:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.VC80.CRT" (8.0.50727.762)
002a:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.VC80.CRT" (8.0.50727.762)
002a:fixme:nls:GetThreadPreferredUILanguages 00000038, 0x23e480, 0x23e490 0x23e484
002a:fixme:nls:get_dummy_preferred_ui_language (0x38 0x23e480 0x23e490 0x23e484) returning a dummy value (current locale)
002a:fixme:heap:RtlSetHeapInformation 0xa80000 0 0x23e7a0 4 stub
002a:err:module:attach_dlls "MSVCR80.dll" failed to initialize, aborting
002a:err:module:attach_dlls Initializing dlls for L"Z:\\home\\user\\test\\x64\\process.exe" failed, status c0000142
I must mention that MS Visual C++ 2005 Redistributable Package is already installed using command

winetricks vcrun2005

Also I have downloaded the "msvcr80.dll" file with the exact same version (8.0.50727.762) and I have put it in the application folder.

And the issue is still not resolved unfortunately.

Any help would be greatly appreciated! Thanks in advance.
User avatar
dimesio
Moderator
Moderator
Posts: 13204
Joined: Tue Mar 25, 2008 10:30 pm

Re: Issue with 64-bit application execution under wine (miss

Post by dimesio »

Winetricks only installs the 32 bit versions of vcrun. You could try installing the 64 bit version yourself, but it may not work.
atg
Newbie
Newbie
Posts: 2
Joined: Tue Jun 18, 2019 1:11 pm

Re: Issue with 64-bit application execution under wine (miss

Post by atg »

dimesio wrote:Winetricks only installs the 32 bit versions of vcrun. You could try installing the 64 bit version yourself, but it may not work.
Thanks for you reply.

I think such behavior was fixed in this commit: https://github.com/Winetricks/winetrick ... 3725c4a475

I saw the "Manually extracting the 64-bit dlls" message during vcrun2005 installation.
Locked