cant open wine program

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
inhki
Level 1
Level 1
Posts: 9
Joined: Sun Mar 05, 2023 2:24 am

cant open wine program

Post by inhki »

i want to open program growtopia installer on wine 8.0
but i have errror massge like this

Code: Select all

0080:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0080:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0080:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0080:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0094:err:vulkan:get_vulkan_driver Wine was built without Vulkan support.
00e0:err:environ:init_peb starting L"Z:\\home\\cobra\\Downloads\\jont.exe" in experimental wow64 mode
00e0:err:module:load_wow64_ntdll failed to load L"\\??\\C:\\windows\\syswow64\\ntdll.dll" error c0000135
00e0:err:wow:load_64bit_module failed to load dll c0000005
i tried search google but none work for me
i used Ubuntu 22.04
and wine version 8.0
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: cant open wine program

Post by jkfloris »

Code: Select all

00e0:err:environ:init_peb starting L"Z:\\home\\cobra\\Downloads\\jont.exe" in experimental wow64 mode
It looks like you compiled Wine yourself in the new way (--enable-archs=i386,x86_64).
Many features, including the graphical environment, do not yet work.

Try building Wine the "old" way or use the Ubuntu packages.
sanchus
Newbie
Newbie
Posts: 1
Joined: Tue Apr 25, 2023 1:21 am

Re: cant open wine program

Post by sanchus »

I have the same problem under MacOS 13.
How can I solve this problem on the Mac?
RedeemerOfSouls
Level 1
Level 1
Posts: 6
Joined: Sat Sep 24, 2022 2:50 pm

Re: cant open wine program

Post by RedeemerOfSouls »

jkfloris wrote: Sun Mar 05, 2023 7:23 am Try building Wine the "old" way
What would be the "old" way please?
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: cant open wine program

Post by jkfloris »

The old way is to build the 64bit part first and then the 32bit:

Code: Select all

cd ~/wine-dirs/wine64-build/
../wine-source/configure --enable-win64
make
cd ~/wine-dirs/wine32-build/
../wine-source/configure --with-wine64=../wine64-build
make
More information is on the WineHQ Wiki.
Locked