macchinetta wrote:Thank you for interest to my problem.
I compile with your minor changes.
Crash still remain, or bit second, or few second, or max one minute from start game.
(naturally fps is limited without csmt patch)
I upload output of mkpkg here:
https://gist.github.com/anonymous/c9659 ... decd1d1d25
Sorry for i've use Italian localization for my distro, and mkpkg output speak Italian few times.
"/media/part-b/Pacchetti/wine-staging-git" is directory when i work (my tmp is mounted to ram, and isn't enough big to compile wine).
Hiya
macchinetta,
I've checked the build log against my pure Arch build log. There is virtually no difference that I can detect. All the missing 32-bit development libraries are not crucial (but are the same for pure Arch and your Chakra build anyway).
There's nothing obvious in your console log output either...
The Staging patchset (from Wine Staging) really does bugger all... Refer to
Wine-Staging: Staging Patchset ... So something funky is going on.
I wouldn't install any archived
Arch binary packages (e.g. old wine or wine-staging versions - the linkage will be wrong) - but compiling from source
should work. I can't see anything obviously wrong with package you've built.
Feel free to file a bug on the
WineHQ Bugzilla... You might want to attach a longer console log...
Because the 2000 line snapshot, you uploaded, might not have caught the reason for the crash...
Typically it's a API call that fails. Then the return value is used later on - can be a "lot later" in a verbose console log - leading to the actual point at which the crash is registered - and a stack trace is generated. You need to capture the whole event...
You could use something like:
Code: Select all
tail -n 10000000 'console_log.txt' | xz -z -T 0 - > console_log.txt.xz
before attaching the console log to the WineHQ Bug Report. Just keep adding zero's - on the
tail command - till something breaks!!
You'd need a console log with
timestamps as well (for an issue like yours):
Code: Select all
export WINEDEUG=+tid,+timestamp,+all
It's up to you whether you file the bug against the stock Chakra
wine-staging package and then mention your other tests
or some other way around!
Sorry I can't be more helpful... But I'm just scratching my head, in puzzlement, at this point...
Bob