http://bugs.winehq.org/show_bug.cgi?id=1901
------- Additional Comments From winehqbugzilla(a)huwig.de 2004-25-01 12:34 -------
I had the same and it was indeed from an old installation:
kurt@lobo:~$ ldd `which wine.bin-pthread`
libwine.so.1 => /usr/local/lib/libwine.so.1 (0x40025000)
^^^^^^^^^^^^^^^^^^^^^^^^^^
libpthread.so.0 => /lib/libpthread.so.0 (0x4003c000)
libc.so.6 => /lib/libc.so.6 (0x4008d000)
libdl.so.2 => /lib/libdl.so.2 (0x401c0000)
libm.so.6 => /lib/libm.so.6 (0x401c3000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
After a
rm /usr/local/lib/libwine*
ldconfig
everything worked fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1952
------- Additional Comments From lionel.ulmer(a)free.fr 2004-25-01 12:13 -------
The question is how to emulate QueryPerformanceCounter and
QueryPerformanceFrequency on Linux... Either we use 'gettimeofday' (and thus do
a syscall each time the Win32 application calls this) or we use the 'rtdsc'
instruction and need the CPU frequency.
So the real question would rather be : how does Windows do to implement the
Performance functions for non-constant MHz CPUs.
http://bugs.winehq.org/show_bug.cgi?id=1952
------- Additional Comments From lesha(a)netman.ru 2004-25-01 11:51 -------
After a bit more investigation: This is correct -- Half-Life & UT both use
QueryPerformanceCounter & QueryPerformanceFrequency for their timing. When rdtsc
isn't available, Wine emulates these. However, when it is available, Wine uses
the MHz rating from /proc/cpuinfo.
I looked at the 2.4.21 + ACPI kernel, and it seems fixing it isn't that hard,
but involves exporting the cpu_khz variable (see asm/timex.h). I do believe this
is done in 2.6 (though I'd need to wait till I can upgrade). It might also be in
later 2.4 releases (again, need to wait to check it out).
What I'm trying to get at, however, is that Wine *ought* to be using cpu_khz
when it's available. The rationale? Some CPUs scale their frequency very often,
and this would lead to game speeds jumping around if the frequency was just set
at start-up.
Writing a patch isn't hard except for this question: how do I detect if cpu_khz
is available? If there's interest, I will post it in a few days.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1961
Summary: memory managment - problem with Borland ilink32
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adrian(a)kadu.net
Please please please, add some support for ilink32. It hangs
beacouse of memory managment differences between wine and windows.
I have a path for wine 20031118 but it don't work with newer versions.
Why don't you want to add this as an option? Or just leave this commented
in source.. Do something!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1952
------- Additional Comments From mike(a)theoretic.com 2004-25-01 07:44 -------
I think this is a kernel bug. I don't think Wine itself uses CPU speed to
calibrate timing, most likely the app itself asks the OS for CPU speed data and
then uses that (rdtsc).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1960
Summary: Bison 1.875 does not compile
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: shaokahn(a)outworld.ch
System:
Mandrake 9.2
Bison 1.875
Wine (tryed severals)
compiling error:
make[1]: Entering directory
`/home/stefan/Documents/Downloads/wine-20030219/library'
make[1]: Für das Ziel »all« ist nichts zu tun.
make[1]: Leaving directory
`/home/stefan/Documents/Downloads/wine-20030219/library'
make[1]: Entering directory
`/home/stefan/Documents/Downloads/wine-20030219/ole'
make[1]: Für das Ziel »all« ist nichts zu tun.
make[1]: Leaving directory
`/home/stefan/Documents/Downloads/wine-20030219/ole'
make[1]: Entering directory
`/home/stefan/Documents/Downloads/wine-20030219/unicode'
make[1]: Für das Ziel »all« ist nichts zu tun.
make[1]: Leaving directory
`/home/stefan/Documents/Downloads/wine-20030219/unicode'
make[1]: Entering directory
`/home/stefan/Documents/Downloads/wine-20030219/tools'
make[2]: Entering directory
`/home/stefan/Documents/Downloads/wine-20030219/tools/wpp'
bison -y -ppp -d -t ./ppy.y
make[2]: *** [y.tab.c] Broken pipe
make[2]: Leaving directory
`/home/stefan/Documents/Downloads/wine-20030219/tools/wpp'
make[1]: *** [wpp] Fehler 2
make[1]: Leaving directory
`/home/stefan/Documents/Downloads/wine-20030219/tools'
make: *** [tools] Fehler 2
Resolve:
downgrading Bison
I installed 1.35 and its working with this
Greetings
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1952
lesha(a)netman.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From lesha(a)netman.ru 2004-24-01 14:30 -------
I finally know exactly what was going on. Someone knowledgeable needs to decide
if this is a problem Wine should fix. My laptop has SpeedStep, and if you power
it up without AC power, it will boot in 1200 Mhz, and /proc/cpuinfo will list
1200 mhz. Turning on AC power switches back to 1700Mhz (or manual acpi
adjustments). However, /proc/cpuinfo reflects only 1200. Wine apparently uses
CPU cycles for timing (IMO, a lousy idea). Thus, when I had gone through power
up without AC, later switched to AC, Wine thinks that my Mhz rating is lower
than it is, and I get a speed increase of 42%. If I now use ACPI to reconfigure
as 1200 Mhz, I end up with normal speeds again. So, really, ACPI could be
considered at fault for not updating cpuinfo. But maybe /proc/cpuinfo isn't even
the right place to read this information. Or at least, maybe one shouldn't rely
on reported MHz for timing. For instance, the native shooters (Prboom, Quake3)
don't mind at all if I switch the CPU frequency mid-game. Opinions?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1912
------- Additional Comments From tobias.burnus(a)physik.fu-berlin.de 2004-24-01 08:15 -------
Created an attachment (id=503)
--> (http://bugs.winehq.org/attachment.cgi?id=503&action=view)
Last 4000 lines of terminal output using -debugmsg +relay,+snoop,+ole (6.9 KiB,
gzipped)
> can you run with -debugmsg +relay,+snoop,+ole, grep -v CriticalSection
Well, if I run the current CVS version of wine *without* -debugmsg, the splash
window is shown and behind the main window (but with no background drawn), wine
shows then only hundreds of such lines (cf. above):
err:win:WIN_FindWndPtr window 0x10035 belongs to other process
If I use the -debugmsg (and direct the output into a log file), I get only 29M
of log and no splash window, but instead the following dialogue box after
---- Application Error----
Exception EAcessViolation in module illprs.dll at 00028A77. Access violation at
address 4145BA77 in module illprs.dll. Read of adress 000000000.
[OK]
--------------------------
and wine exits after I hit ok.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=1959
Summary: Problem compiling wine 20040121
Product: Wine
Version: 20040121
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pierre42d(a)9online.fr
[...]
gmake[2]: Entering directory `/tmp/wine-20040121/dlls/kernel'
gmake[2]: *** No rule to make target `../../include/pshpa', needed by
`except.o'. Stop.
gmake[2]: Leaving directory `/tmp/wine-20040121/dlls/kernel'
gmake[1]: *** [kernel] Error 2
gmake[1]: Leaving directory `/tmp/wine-20040121/dlls'
gmake: *** [dlls] Error 2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.