https://bugs.winehq.org/show_bug.cgi?id=53922
Bug ID: 53922 Summary: FoxPro for Windows 2.6a doesn't start when compiled with -O0 Product: Wine Version: 7.20 Hardware: x86-64 OS: Linux Status: NEW Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: dark.shadow4@web.de Distribution: ---
This is how I compile wine for debugging purposes:
ALLFLAGS="-g -O0" PKG_CONFIG_PATH=/usr/lib32/pkgconfig CC="ccache gcc" CFLAGS="$ALLFLAGS" CROSSCC="ccache i686-w64-mingw32-gcc" CROSSCFLAGS="$ALLFLAGS" ../wine-git/configure --enable-silent-rules
But when I run FoxPro with that, I get the following output:
007c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 007c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 007c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 007c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 00d4:err:seh:KiUserCallbackDispatcher ignoring exception 00d4:err:seh:KiUserCallbackDispatcher ignoring exception
Using -O2 instead of -O0 works around that issue.
https://bugs.winehq.org/show_bug.cgi?id=53922
Fabian Maurer dark.shadow4@web.de changed:
What |Removed |Added ---------------------------------------------------------------------------- URL| |https://winworldpc.com/down | |load/c3a23335-4f6f-c2a3-11c | |3-a4c2b14b5404 Keywords| |download, win16
https://bugs.winehq.org/show_bug.cgi?id=53922
--- Comment #1 from Fabian Maurer dark.shadow4@web.de --- Created attachment 73478 --> https://bugs.winehq.org/attachment.cgi?id=73478 Hack to work around the issue
Using
gcc (GCC) 12.2.0 i686-w64-mingw32-gcc (GCC) 12.2.0
Attaching a hack to narrow down the issue.