http://bugs.winehq.org/show_bug.cgi?id=35951
Bug ID: 35951
Summary: Cant launch cs go while using ati card, 7xxx series
(at least)
Product: Wine
Version: 1.7.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jarkko_korpi(a)hotmail.com
Created attachment 48021
--> http://bugs.winehq.org/attachment.cgi?id=48021
error dialog
There has not been a bug report of this issue and I decided to make one.
wine version 1.7.15
For some reason I tried to run csgo directly without using steam and I got very
odd response.
"SSE and SSE2 are required."
I have never seen that before.
I have phenom 2 processor http://en.wikipedia.org/wiki/Phenom_ii
Instruction set x86, x86-64, MMX, SSE, SSE2, SSE3, SSE4a
There is something that prevents ati users to play cs go (see pic). I don't
know what cards are affected. I think I had this with 7770, now with 7870 and
cs go database has 7850 entry about this issue. I have helped one guy at irc
related this issue. He had ati, but don't remember model.
The trick has been to lie to game via regedit your graphic card, changing
device and vendor id. After that there is no such dialog.
--
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=37376
Bug ID: 37376
Summary: Visual C++ 2005 Express SP1 installer displays in
French instead of English
Product: Wine
Version: 1.7.28
Hardware: x86
URL: http://download.microsoft.com/download/7/7/3/7737290f-
98e8-45bf-9075-85cc6ae34bf1/VS80sp1-KB926748-X86-INTL.
exe
OS: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: hans(a)meelstraat.net
Created attachment 49703
--> https://bugs.winehq.org/attachment.cgi?id=49703
terminal output
Regression, introduced by:
[austin@localhost wine-git]$ git bisect bad
a5d8ab57f6b84f318efee10c97558df5514c342d is the first bad commit
commit a5d8ab57f6b84f318efee10c97558df5514c342d
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Wed Sep 3 15:41:09 2014 +0200
msi: Check transform validation flags.
:040000 040000 416ba98de7b1b99ee842a1567f8e5efb6fb7fdec
04c4690b8bc9165daf6fd2a44f9fbf279cf5dfbe M dlls
:040000 040000 73a4170d25993e7e1caa02c7ef6088441dce0fcc
d4309fc63e0d5bade735f55d95828820018d74af M include
--
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=31039
Bug #: 31039
Summary: Visual C++ 2005 Express SP1 install fails
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mathieu.malaterre(a)gmail.com
Classification: Unclassified
Sorry if this looks like a duplicate of #20110 but I believe one can still not
install Visual C++ 2005 Express SP1 using wine 1.5.5:
$ wine --version
wine-1.5.5
$ wine VS80sp1-KB926748-X86-INTL.exe
fixme:storage:create_storagefile Storage share mode not implemented.
Using:
$ wget
http://download.microsoft.com/download/7/7/3/7737290f-98e8-45bf-9075-85cc6a…
$ md5sum VS80sp1-KB926748-X86-INTL.exe
a5129e83a91fc1ec44f45189f27244be VS80sp1-KB926748-X86-INTL.exe
Thanks
--
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=20110
Summary: Visual C++ 2005 Express SP1 install fails
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://download.microsoft.com/download/7/7/3/7737290f-
98e8-45bf-9075-85cc6ae34bf1/VS80sp1-KB926748-X86-INTL.
exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
(Bug 19502 is about Visual C++ 2005 SP1 [not express] install failing.
Since the express apps are easier to download and install, I figured
it was worth having a separate bug. If the problem turns out to
be the same, we'll merge the bugs.)
http://download.microsoft.com/download/7/7/3/7737290f-98e8-45bf-9075-85cc6a…
(sha1sum 8b9a0172efad64774aa122f29e093ad2043b308d)
fails to install. To reproduce:
wget http://winezeug.googlecode.com/svn/trunk/winetricks
sh winetricks -q vc2005express
sh winetricks vc2005expresssp1
It crashes soon after
trace:msi:MsiGetFileVersionW
L"C:\\windows\\Microsoft.NET\\Framework\\URTInstallPath\\al.exe" (nil) 0 (nil)
0
in msi's find_published_source() on the line
mi->volume_label = msi_realloc(mi->volume_label, ++volumesz * sizeof(WCHAR));
because mi->volume_label was NULL, and evidently realloc doesn't alloc in that
case. If you change that to read
sizeof(WCHAR));
mi->volume_label = mi->volume_label ? msi_realloc(mi->volume_label,
++volumesz * sizeof(WCHAR)) : msi_alloc(++volumesz * sizeof(WCHAR));
it gets very slightly farther and fails with
err:msi:ACTION_InstallFiles compressed file wasn't extracted
(L"C:\\windows\\Microsoft.NET\\Framework\\URTInstallPath\\al.exe")
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned
1603
Calling MSI for now, might be something else.
--
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=28774
Bug #: 28774
Summary: Mega: crashes on start (Call from 0x7b83a9e9 to
unimplemented function
msvcp60.dll.?_Tidy@?$basic_string@DU?$char_traits@D@st
d@@V?$allocator@D@2@@std@@AAEX_N@)
Product: Wine
Version: 1.3.30
Platform: x86-64
URL: http://www.megasoftware.net/megalinux.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: petrushkin(a)yandex.ru
Classification: Unclassified
Created attachment 36968
--> http://bugs.winehq.org/attachment.cgi?id=36968
backtrace on virgin wine prefix
Alternative download link:
http://update.megasoftware.net/deb/pool/main/m/mega/mega_5110426_all.deb (they
are packed windows exe into deb package)
or https://aur.archlinux.org/packages.php?ID=53233 for Arch Linux.
When I started MEGA (Molecular Evolutionary Genetics Analysis) I get such
error:
$ wine /usr/local/bin/MEGA/MEGA5.exe
wine: Call from 0x7b83a9e9 to unimplemented function
msvcp60.dll.?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z,
aborting
fixme:resource:GetGuiResources (0xd4,0): stub
$ wine --version
wine-1.3.30
I have found bug http://bugs.winehq.org/show_bug.cgi?id=27067 but it's closed
as fixed, but in latest version I get this error again.
--
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=27067
Summary: Drake of the 99 Dragons needs
msvcp60.dll.?_Tidy@?$basic_string@DU?$char_traits@D@st
d@@V?$allocator@D@2@@std@@AAEX_N@Z
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Unhandled exception: unimplemented function
msvcp60.dll.?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@
called in 32-bit code (0x7b839282).
qdvd needs to be registered in order bypass the crash when the movies play but
they don't show.
with msvcp60 it works.
--
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=27303
Summary: QQMusic2011 installer needs atl80.dll
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1. Download QQmusic installer
$ wget http://dl_dir.qq.com/music/clntupate/QQMusic2011.exe
2. install vcrun6, works around http://bugs.winehq.org/show_bug.cgi?id=27067 (
Drake of the 99 Dragons needs
msvcp60.dll.?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z
)
$ winetricks -q vcrun6
3. install QQMusic2011
$ wine QQMusic2011.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.ATL" (8.0.50727.4053)
err:module:import_dll Library ATL80.DLL (which is needed by L"C:\\Program
Files\\Tencent\\QQMusic\\QQMusicCvtData.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Tencent\\QQMusic\\QQMusicCvtData.exe" failed, status c0000135
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.ATL" (8.0.50727.4053)
err:module:import_dll Library ATL80.DLL (which is needed by L"C:\\Program
Files\\Tencent\\QQMusic\\QQMusicCvtData.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Tencent\\QQMusic\\QQMusicCvtData.exe" failed, status c0000135
err:ole:CoGetClassObject class {1dabf8d5-8430-4985-9b7f-a30e53d709b3} not
registered
err:ole:CoGetClassObject class {1dabf8d5-8430-4985-9b7f-a30e53d709b3} not
registered
err:ole:create_server class {1dabf8d5-8430-4985-9b7f-a30e53d709b3} not
registered
See attachment for full log.
Is there any way to work around? register a native atl80.dll will cause run
time error r6034, is that a bug?
Thanks!
--
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=27304
Summary: QQMusic2011
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=34923)
--> (http://bugs.winehq.org/attachment.cgi?id=34923)
Log: start QQMusic
1. Download QQmusic installer
$ wget http://dl_dir.qq.com/music/clntupate/QQMusic2011.exe
2. install vcrun6, works around http://bugs.winehq.org/show_bug.cgi?id=27067 (
Drake of the 99 Dragons needs
msvcp60.dll.?_Tidy@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AAEX_N@Z
)
$ winetricks -q vcrun6
3. install QQMusic2011
$ wine QQMusic2011.exe
4. set msvcrt overriding to "builtin", works around winetricks Issue 81:
QQmusic call unimplemented function msvcrt.dll._snwprintf_s if native vcrun6 is
installed by winetricks
5. start QQMusic:
$ cd ~/.wine/drive_c/Program Files/Tencent/QQMusic
$ wine QQMusic.exe
After a while an error message dialog says QQMusic has to close, see attachment
for full log.
There is a bug about QQMusic installer: Bug 27303 - QQMusic2011 installer needs
atl80.dll
--
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=29549
Bug #: 29549
Summary: QQMusic crash at unimplemented msvcr80.dll.tmpfile_s
Product: Wine
Version: 1.3.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Download QQMusic installer
http://dl_dir.qq.com/music/clntupate/QQMusic2011.exe
2. Install with Wine
wine-1.3.36-129-ga86b765
3.
$ cd "~/.wine/drive_c/Program Files/Tencent/QQMusic"
$ wine QQMusic.exe
Crash
Backtrace:
=>0 0x7b83a46b RaiseException+0x87(code=0x80000100, flags=0x1, nbargs=0x2,
args=0x33f808) [/home/fracting/wine-git/dlls/kernel32/except.c:84] in kernel32
(0x0033f7e8)
1 0x7dea242d __wine_spec_unimplemented_stub+0x34(module="msvcr80.dll",
function="tmpfile_s") [/home/fracting/wine-git/dlls/winecrt0/stub.c:34] in
msvcr80 (0x0033f818)
2 0x7dea21d5 __wine_stub_tmpfile_s+0x28() in msvcr80 (0x0033f884)
3 0x004029bc in qqmusic (+0x29bb) (0x0033f884)
--
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=27575
Summary: QQMusic installer needs
msvcp60.dll.??9std@@YA_NABV?$basic_string@DU?$char_tra
its@D@std@@V?$allocator@D@2@@0@PBD@Z
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
1 Download installer of QQMusic from:
http://dl_dir.qq.com/music/clntupate/QQMusic2011.exe
2. start with wine
$ wine QQMusic2011.exe
fixme:msvcrt:_setmbcp trail bytes data not available for DBCS codepage 0 -
assuming all bytes
wine: Call from 0x7b839c02 to unimplemented function
msvcp60.dll.??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z,
aborting
wine: Unimplemented function
msvcp60.dll.??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z
called at address 0x7b839c02 (thread 0009), starting debugger...
Unhandled exception: unimplemented function
msvcp60.dll.??9std@@YA_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@PBD@Z
called in 32-bit code (0x7b839c02).
--
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.