c00000ba error using wine built from sources

Questions about Wine on Linux
Locked
m7nu3l
Newbie
Newbie
Posts: 1
Joined: Thu Jan 16, 2020 9:22 pm

c00000ba error using wine built from sources

Post by m7nu3l »

Hello

This is the first time I'm here asking for help. I previously searched for my error but I didn't find anything related.

I decided to build wine from sources, I managed to do it but it fails when I do a smoke test running notepad.

Everything is done in a VM with Ubuntu 16.04 32 bits. I'm trying to compile wine in its 32 bits form. The steps I made are:

Code: Select all

git clone https://github.com/wine-mirror/wine.git --depth=1
software-properties-gtk to enable the 'source-code' option
sudo apt-get build-dep wine
mkdir wine-build & cd wine-build
../wine/configure
The configure command ended successfully but thrown the following warnings:
configure: MinGW compiler not found, cross-compiling PE files won't be supported.
configure: libhal development files not found, no legacy dynamic device support.
configure: libudev development files not found, plug and play won't be supported.
configure: libSDL2 development files not found, SDL2 won't be supported.
configure: libFAudio development files not found, XAudio2 won't be supported.
configure: libkrb5 development files not found (or too old), Kerberos won't be supported.
configure: libvulkan and libMoltenVK development files not found, Vulkan won't be supported.
configure: vkd3d development files not found (or too old), Direct3D 12 won't be supported.

configure: Finished. Do 'make' to compile Wine.
Trying to fix those warnings I ran:

Code: Select all

sudo apt-get build-dep wine-development
. Anyway, the warnings still persisted.

Then, I did:

Code: Select all

make -j4
. The build ended successfully.

In order to test my build, I did:

Code: Select all

 wine-build/wine wine/build/programs/notepad
. A messaged appeared and asked me to install NET and gecko and I did it. Then, I got the following error:
0009:err:module:__wine_process_init failed to load L"Z:\\home\\manuel\\dev\\wine-build\\programs\\notepad\\", error c00000ba
Kindly, I would like to ask you if you can spot what I've missed. Please, tell me if you need any other information about my setup.

Best,
Manuel.
spoon0042
Level 6
Level 6
Posts: 570
Joined: Thu Dec 24, 2009 11:00 am

Re: c00000ba error using wine built from sources

Post by spoon0042 »

That's a directory.

(Possibly it could tell you that rather than having to do a grep of the source tree for c00000ba and finding STATUS_FILE_IS_A_DIRECTORY. Who knows.)
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: c00000ba error using wine built from sources

Post by Bob Wya »

m7nu3l wrote: Thu Jan 16, 2020 9:42 pm ...
In order to test my build, I did:

Code: Select all

 wine-build/wine wine/build/programs/notepad
. A messaged appeared and asked me to install NET and gecko and I did it. Then, I got the following error:
0009:err:module:__wine_process_init failed to load L"Z:\\home\\manuel\\dev\\wine-build\\programs\\notepad\\", error c00000ba
...
@m7nu3l

Just to add to spoon0042's comment...

You actually want to test the builtin Wine notepad command with:

Code: Select all

wine-build/wine start notepad.exe
This fake executable is stored in C:\Windows\System32 for each WINEPREFIX.
So Wine will find notepad.exe, without any additional path information, using the default search path for Window binaries.

Bob
Locked