http://bugs.winehq.org/show_bug.cgi?id=5259
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #10 from Alexandre Julliard <julliard(a)winehq.org> 2009-10-23 13:18:09 ---
Closing bugs fixed in 1.1.32.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=3047
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #9 from Alexandre Julliard <julliard(a)winehq.org> 2009-10-23 13:18:08 ---
Closing bugs fixed in 1.1.32.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=2181
Alexandre Julliard <julliard(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #39 from Alexandre Julliard <julliard(a)winehq.org> 2009-10-23 13:18:06 ---
Closing bugs fixed in 1.1.32.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=425
--- Comment #14 from Juan Lang <juan_lang(a)yahoo.com> 2009-10-23 11:51:00 ---
*** Bug 20446 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=425www.recover.eu <info(a)recover.eu> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |info(a)recover.eu
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=15206
Summary: Trouble with symbolic stack dumps and Chromium
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://build.chromium.org/buildbot/snapshots/chromium-
rel-xp/
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Chromium has nightly builds with pdb files at
http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/
and if you install corefonts, then current wine can install
and run (though for me chromium hangs when loading web page).
However, getting symbolic stack dumps (sometimes?) fails.
To get wine to find the symbol files, put them in the current
directory (or the directory they were in when they were built,
or a directory on Wine's PATH).
But wine complains
trace:dbghelp_msc:pdb_init
PDB(Z:\home\dank\snapshots\1712\chrome-win32-syms\chrome_dll.pdb): "Microsoft
C/C++ MSF 7.00\r\n\x1aDS\x00\
trace:dbghelp_msc:pdb_init found DS/f for
Z:\home\dank\snapshots\1712\chrome-win32-syms\chrome_dll.pdb: age=30
guid={c007e080-dbde-4fd9-a8dd-ae84cd0524a9}
warn:dbghelp:module_find_cb Found
L"Z:\\home\\dank\\snapshots\\1712\\chrome-win32-syms\\chrome_dll.pdb", but
wrong age: 00000030 0000002c
(Does that mean the .pdb files are mismatched, or is this a wine bug?)
This patch disables the "age" check and seems to let symbolic
stacks to be produced:
--- a/dlls/dbghelp/path.c
+++ b/dlls/dbghelp/path.c
@@ -560,7 +560,7 @@ static BOOL CALLBACK module_find_cb(PCWSTR buffer, PVOID
use
}
if (pdb_lookup.age != mf->dw2)
{
- matched--;
+ //matched--;
WARN("Found %s, but wrong age: %08x %08x\n",
debugstr_w(buffer), pdb_lookup.age, mf->dw2);
}
although now I don't seem to need the patch, so maybe I'm smoking crack.
Also, after about 12 lines of backtrace, winedbg seems to get
stuck in an infinite loop. And before the backtrace there are
hundreds of thousands of lines like
fixme:dbghelp_msc:codeview_snarf Unsupported symbol id 1012
FWIW, here's my script to reproduce:
#!/bin/sh
set -xe
# This snapshot crashed for me; normally you'll want the latest one
SNAPSHOT=1712
export WINE=$HOME/wine-git/wine
export WINEPREFIX=$HOME/.wine
cd $HOME
mkdir -p pdb-bug
cd pdb-bug
# Grab and unpack a snapshot of Chromium including debugging symbols
wget -c
http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/$SNAPSHOT/chro…
test -d chrome-win32 || unzip chrome-win32.zip
wget -c
http://build.chromium.org/buildbot/snapshots/chromium-rel-xp/$SNAPSHOT/chro…
test -f chrome_exe.pdb || unzip -j chrome-win32-syms.zip
# Clean up .wine and install corefonts
rm -rf $WINEPREFIX
rm -f winetricks
wget http://kegel.com/wine/winetricks
sh winetricks -q corefonts
$WINE chrome-win32/chrome.exe --no-sandbox --single-process --disable-breakpad
http://www.kegel.com 2>&1 | tee wine.log
echo 'Now look at $PWD/wine.log to see whether a symbolic backtrace was
produced.'
echo 'Without the patch, it (sometimes?) fails with WARN "Found %s, but wrong
age".'
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=835
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
--- Comment #10 from Dan Kegel <dank(a)kegel.com> 2009-10-23 05:46:26 ---
Sorry I didn't respond earlier.
I put together a set of scripts that makes it somewhat easy
to test basic stack traceback support in both valgrind+wine
and plain wine across several versions of visual C++.
It's at
http://kegel.com/wine/valgrind/pdbdemo.tgz
Details at
http://kegel.com/wine/valgrind/pdbdemo/Readme.txt
It boils down to
wine valgrind
vc2003 great! no good stack?!
vc2005 no line numbers no good stack?!
vc2008 no line numbers no line numbers
So it looks like Wine needs to update its pdb parsing to handle
vc2005 and vc2008.
I'll add vc6 to that demo when I get a chance.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=7036
Wylda <wylda(a)volny.cz> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wylda(a)volny.cz
--- Comment #18 from Wylda <wylda(a)volny.cz> 2009-10-22 23:32:42 ---
Hi, there is a missed patch in comment #12. The latest version of wine, which
can be merged with this patch is 1.1.8.
Patched wine-1.1.8 works perfectly. Compared to 1.1.31 which still fails to run
doom3 demo.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=8997
Al Turner <al_turner(a)comcast.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |al_turner(a)comcast.net
--- Comment #47 from Al Turner <al_turner(a)comcast.net> 2009-10-22 21:02:30 ---
Still an issue in 1.1.31. Workaround (download/kill process/reload TM program)
still works, though.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.
http://bugs.winehq.org/show_bug.cgi?id=20404
Summary: SimCity 4 (including Rush Hour/Deluxe) fails to start
Product: Wine
Version: 1.1.31
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tgheretford(a)googlemail.com
When I start SimCity 4 (or Rush Hour/Deluxe), Wine fails to start the program,
drops back to a command prompt and kills the wineserver. This error occurs when
I installed previous versions of Wine (prior to which I used a clean Wine
directory to test), even versions from six months ago which worked then, so I
don't think this is a regression.
Using Ubuntu 9.10 Karmic Koala beta with Wine 1.1.31 Jaunty from the Wine
repository.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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.