https://bugs.winehq.org/show_bug.cgi?id=48211
Bug ID: 48211
Summary: Regression: midl.exe fails to execute MIDL engine
Product: Wine
Version: 4.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: rpisl(a)seznam.cz
Distribution: ---
midl.exe from Windows Kits 8.1 fails with error MIDL2398 : cannot execute MIDL
engine.
This is a regression caused by commit 1deefb84ee2b6d326b5ae1bad592a72c69a89b36.
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Nov 12 21:41:06 2019 +0100
kernel32: Use RtlCreateUserProcess() to start new processes.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48626
Bug ID: 48626
Summary: Can't restart program in `--gdb` mode
Product: Wine
Version: 5.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: hi-angel(a)yandex.ru
Distribution: ---
While debugging a program, it's often useful to set a breakpoint and then
restart the application. Unfortunately, `run` command in gdb mode doesn't work.
# Steps to reproduce (in terms of terminal commands)
╰─$ winedbg --gdb ping.exe
0055:0056: create process 'C:\windows\system32\ping.exe'/0x11420
@0x7fea58a84820 (0<0>)
0055:0056: create thread I @0x7fea58a84820
GNU gdb (GDB) 9.1
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
0055:0056: loads DLL C:\windows\system32\ntdll.dll @0x7bc20000 (0<0>)
0055:0056: loads DLL C:\windows\system32\kernelbase.dll @0x7b010000 (0<0>)
0055:0056: loads DLL C:\windows\system32\kernel32.dll @0x7b420000 (0<0>)
0055:0056: loads DLL C:\windows\system32\wow64cpu.dll @0x7fea58a90000 (0<0>)
0055:0056: loads DLL C:\windows\system32\ws2_32.dll @0x7fea58240000 (0<0>)
0055:0056: loads DLL C:\windows\system32\advapi32.dll @0x7fea581b0000 (0<0>)
0055:0056: loads DLL C:\windows\system32\iphlpapi.dll @0x7fea58a40000 (0<0>)
0055:0056: loads DLL C:\windows\system32\msvcrt.dll @0x7fea580d0000 (0<0>)
warning: remote target does not support file transfer, attempting to access
files from local filesystem.
warning: Could not load shared library symbols for linux-vdso.so.1.
Do you need "set solib-search-path" or "set sysroot"?
0x000000007bcd9e89 in DbgBreakPoint () from /usr/bin/../lib/wine/ntdll.dll.so
gdb λ run
The "remote" target does not support "run". Try "help target" or "continue".
## Expected
Gdb would ask me if I really want to restart, and then if I press Y, it would
restart the app
## Actual
The error "target does not support run"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48620
Bug ID: 48620
Summary: libmdbx (memory-mapped DB) fail on Wine
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: leo(a)yuriev.ru
Distribution: ---
The libmdbx provides an embedded key-value storage engine (i.e. a database
service) and map whole data into memory (i.e. uses a memory mapped file), and I
am the main developer of this project.
https://github.com/erthink/libmdbx
Native versions of libmdbx work fine on both Linux, Windows, MacOS, FreeBSD,
etc.
However, the windows version does not work under Wine, for instance, as part of
the Miranda NG messenger. Therefore, some users ask me to fix libmdbx, but it
is difficult, since there are no such errors in libmdbx.
This is NOT a big problem, as there are relatively few affected users. However,
I think it would be better to fix this error as well. In addition, this fix is
likely to fix problems in other applications that are compelled to use the
Windows native API.
I am not familiar with Wine and do not use it. So I haven't tried debugging the
windows version of libmdbx on Wine yet, but decided it would be wise to fill
out this report first. I hope someone experienced can explain what's wrong on
by simply reading the description below or quickly reviewing the source code.
---
Presumably, the problem with libmdbx is using the Windows native API:
NtCreateSection(), NtMapViewOfSection(), NtExtendSection(),
NtUnmapViewOfSection(), NtClose(), NtAllocateVirtualMemory(),
NtFreeVirtualMemory(). In libmdbx, I am forced to use these functions to
increase the data file without unmap it from memory. In libmdbx, I am forced to
use these functions to increase the data file without unmap it from memory. It
is done by NtExtendSection() when a section created with SECTION_EXTEND_SIZE
access.
The next a potential cause of problems in using the functions:
NtFsControlFile(FSCTL_GET_EXTERNAL_BACKING),
GetFileInformationByHandleEx(FileRemoteProtocolInfo),
GetVolumeInformationByHandleW(), GetFinalPathNameByHandleW(). These functions
are used via GetProcAddress() to determine the placement of files on network
drives.
The last point the NtQuerySystemInformation(0x03 /* SystemTmeOfDayInformation
*/) is used to determine boot time.
Corresponding source code:
https://github.com/erthink/libmdbx/blob/master/src/elements/osal.chttps://github.com/erthink/libmdbx/blob/master/src/elements/lck-windows.c
Regards.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48592
Bug ID: 48592
Summary: Game DayZ Dedicated Server 1.06.152885
Product: Wine
Version: 5.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: chris.76(a)hotmail.com
Distribution: ---
Created attachment 66428
--> https://bugs.winehq.org/attachment.cgi?id=66428
it crashs at the end of logs
Hello Support,
I'm an advanced user on linux and I'm trying to set up a dedicated server for
my game DayZ.
My game is available only on Steam, windows version and in 64-bit.
I used steamcmd for linux version to download the dedicated server windows
version.
Details about depots of this game :
https://steamdb.info/app/223350/depots/
You can see 2 libraries are needed :
- VC 2013 Redist
- VC 2015 Redist
So I installed wine, setted up in windows 10 (and used WINEARACH, WINEPREFIX)
and installed VC 2013 & 2015 in 64-bit edition.
Unfortunately my server crash when loading.
My server is using a vanilla config, it means untouched.
I attached logs.
Thanks in advance for helping me to fix that.
Have a nice day.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=625
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |austinenglish(a)gmail.com
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48161
Bug ID: 48161
Summary: AION (32bits) wine: Unhandled page fault on write
access to 00000009 at address 00BF00C2 (thread 0009)
Product: Wine
Version: 4.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dracoanarion(a)gmail.com
Distribution: ---
Created attachment 65789
--> https://bugs.winehq.org/attachment.cgi?id=65789
WINEDEBUG=+seh,+loaddll logs
The bug appears quite soon after starting the 32bit version of the app.
The app was started using the following command:
/opt/wine-staging/bin/wine 'C:\AION\bin32\AION.bin' -ip:79.110.83.80 -noweb
-noauthgg -st -charnamemenu -ingamebrowser -webshopevent:6 -f2p -lbox
-litelauncher -64 -ncping -nosatab -aiontv -nobs -60f2p -n20 /SessKey:
/CompanyID:11 /ChannelGroupIndex:-1 -lang:fra -litestep:9
This issue is not reproducible using wine-stable.
As far as I remember, this issue started to appear on 4.17 (but would need to
be confirmed).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48624
Bug ID: 48624
Summary: Homefront has an issue with shadows in DX11 mode
Product: Wine
Version: 5.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 66473
--> https://bugs.winehq.org/attachment.cgi?id=66473
screenshots
No clues with a default output.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48251
Bug ID: 48251
Summary: packaging or sources are fatal with linux mint
Product: Packaging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: 1l1k32p00p(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
idk
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48543
Bug ID: 48543
Summary: bug nao instala
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: celiobelps(a)gmail.com
Distribution: ---
The following packages have unmet dependencies:
wine-stable: Depende: wine-stable-i386 (= 5.0.0~eoan)
Depende: wine-stable-amd64 (= 5.0.0~eoan) but it is not going to
be installed
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48502
Bug ID: 48502
Summary: Debian buster package not installable as it depends on
unstable package
Product: Packaging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-packages
Assignee: wine-bugs(a)winehq.org
Reporter: jorohr(a)gmail.com
CC: dimesio(a)earthlink.net, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
I was trying to install the freshly released 5.0 on Debian buster:
$ sudo apt install wine-stable-i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
wine-stable-i386:i386 : Depends: libfaudio0:i386 (>= 19.06.07) but it is not
installable
Recommends: libcapi20-3:i386 but it is not going to be
installed
Recommends: libodbc1:i386 but it is not going to be
installed
Recommends: libosmesa6:i386 but it is not going to be
installed
Recommends: libsdl2-2.0-0:i386 but it is not going to
be installed
Recommends: libv4l-0:i386 but it is not going to be
installed
E: Unable to correct problems, you have held broken packages.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.