similar to: Thief: The dark project

Displaying 20 results from an estimated 120 matches similar to: "Thief: The dark project"

2011 Dec 14
1
Initial errors when running winecfg for first time
Hi all. Long time without using Wine, my previous Linux installation got broken and waited for next official release. Really feel like a newbie again. Now I'm using openSUSE 12.1 x86_64 kernel 3.1.0-1.2. Sorry if it's newbie question, but I just installed latest Wine version, ran winecfg for first time to create default prefix, and although it succeeded, I got some errors. Complete
2010 Nov 26
1
problem installing utorrent on 64bit linux
hey all Here is what I get when I try to install utorrent on 64 bit arch linux, kernel version 2.6.33.4-1. I've never used wine before and I'm rather new to linux so I don't really know what to make of it. Code: [steini at myhost downloads]$ wine utorrent.exe wine: created the configuration directory '/home/steini/.wine' err:module:load_builtin_dll failed to load .so lib for
2011 Jun 12
7
installation of Office 2007 under Arch x86_64 fails
Running x86_64 with multilib enabled and am unable to install office 2007 to a fresh wineprefix. Code: $ export WINEPREFIX=/home/facade/.wineprefix/office $ wine /media/dvd/setup.exe wine: created the configuration directory '/home/facade/.wineprefix/office' err:module:load_builtin_dll failed to load .so lib for builtin L"winemp3.acm": libmpg123.so.0: cannot open shared object
2017 Aug 06
3
Ocamlfind can't find hivex
<https://github.com/Chocrates> Apologies if this is the wrong list, I initially opened a github ticket before reading that github isn't the right spot. Trying to compile libguestfs and in the process need to get hivex compiled and installed. Hivex compiles and installs fine (I think), but ocamlfind doesn't seem to pick up hivex after the install causing the autogen.sh script in
2016 Jul 03
2
Status of stack walking in LLVM on Win64?
Hi all, I'm developing a novel language that has historically used LLVM for code generation, behind a custom self-hosted front-end. The runtime for this language offers a garbage collector. In the past I've been on 32-bit Windows where precise garbage collection is relatively straightforward (as long as FPO is disabled). Walking the stack is a simple bit of pointer chasing and some
2015 Oct 30
4
Can JIT be targeted to 32-bit in a 64-bit Wndows environment?
You actually can mix 32 and 64 bit code in the same Windows process, but only with great effort. Fixing PR24233 is probably easier. :) We know how to generate the info, but we still have to get it registered... On Thu, Oct 29, 2015 at 2:19 PM, Lang Hames via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi Dibyendu, > > I'm not familiar with Windows at all, but I assume you
2015 Apr 28
2
[LLVMdev] MCJIT longjmp failure on Win64 - was Invalid or unaligned stack exception on Windows
On 28 April 2015 at 00:30, Reid Kleckner <rnk at google.com> wrote: > I think Paweł identified the problem. The frames on the stack between the > setjmp and longjmp must have valid unwind information, which is described > here: > https://msdn.microsoft.com/en-us/library/ft9x1kdx.aspx?f=255&MSPPError=-2147217396 > > In particular, it has this line about JITed code: >
2007 Jun 01
0
Thief, a Simple Camping App
For your entertainment, a simple Camping app to watch your Backpack account and show a list of recently updated pages. I hope to implement an RSS feed soon. Uses Hpricot to parse the XML from Backpack. http://svn.topfunky.com/public/camping/thief/ Geoffrey Grosenbach ........................ Screencast | http://peepcode.com
2011 Apr 30
1
Thief Deadly Shadows
I managed to install TDS running in windowed mode but experiencing two issues. 1. I have no ingame sound (intro sounds work though) 2. The mouse leaves the gaming window when I move to the mouse to far left or right. How can I lock the mouse to the screen? OS: Ubuntu 10.10 64-bit
2010 Aug 05
2
Thief 2 crashes after a few minutes
Hello everyone. Long time wine user, first time poster. I've been trying to get Thief 2 to work. It installed without a hitch, and by all accounts runs perfectly, but after about 3 or 4 minutes of game play, it freezes up on me and I have to kill the process. No amount of googling or studying the appdb entry has been able to help me. It would be much appreciated if someone could give me
2016 Jul 03
2
Status of stack walking in LLVM on Win64?
For JITs it would appear that there is a patch needed for some kind of relocations. https://llvm.org/bugs/show_bug.cgi?id=24233 Is the patch really needed? What does it do? I'm not an expert here so asking. On Sun, Jul 3, 2016 at 2:48 AM, David Majnemer via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > On Sat, Jul 2, 2016 at 5:22 PM, Michael Lewis via llvm-dev >
2018 Nov 23
0
Wine release 3.21
The Wine development release 3.21 is now available. What's new in this release (see below for details): - Typelib marshaller rewrite using NDR functions. - Graphics support on recent Android versions. - Support for memory font resources in DirectWrite. - Joystick support improvements. - Various bug fixes. The source is available from the following locations:
2008 Feb 20
0
No subject
Code: err:ole:CoGetClassObject class {4590f811-1d3a-11d0-891f-00aa004b2e24} not registered err:ole:CoGetClassObject no class object {4590f811-1d3a-11d0-891f-00aa004b2e24} could be created for context 0x1 fixme:reg:GetNativeSystemInfo (0x32967c) using GetSystemInfo() fixme:dsound:IKsPrivatePropertySetImpl_Get unsupported property: {f2957840-260c-11d1-a4d8-00c04fc28aca}
2009 Jun 10
2
IL2 Sturmovik 1946 install failure - Ubuntu 9.04 (64) 1.1.23
Second try with wine. Currently not having success installing anything (GW, Medieval2, or IL-2). Focusing on IL-2 because it's still listed as Gold, and the other apps seem known not to work with ver 1.1.23... Attempted install from right-click>Open With Wine Windows Program Loader Also attempted install from terminal. Both attempts failed at same stage. Progresses through dialogue
2020 Mar 01
2
[MCJIT] messy call stack debug on x64 code in VisualStudio
I've always just hacked support for this in to the various JITs (for JuliaLang, in our debuginfo.cpp file), by setting the no-frame-pointer-optim flag in the IR, then creating and populating a dummy unwind description object in the .text section, and registering that dynamically. Some day I hope to actually just register the .pdata/.xdata sections with the unwinder. PDBs are a bit different
2015 Oct 25
2
Can JIT be targeted to 32-bit in a 64-bit Wndows environment?
Hi On 64-bit Windows the lack of proper stack unwinding support causes crashes in JIT code generated by LLVM. I was wondering if it is possible to ask LLVM to generate 32-bit code - and if that would work within a 64-bit Windows application - i.e. the rest of the system will be 64-bit only the generated code will be 32-bit. I was also wondering if this would allow me to workaround the crashes due
2013 Mar 29
1
Wine release 1.5.27
The Wine development release 1.5.27 is now available. What's new in this release (see below for details): - System tray support in the Mac driver. - Various C runtime improvements. - Large icons for built-in applications. - Various bug fixes. The source is available from the following locations: http://prdownloads.sourceforge.net/wine/wine-1.5.27.tar.bz2
2009 Aug 09
1
Re: Voipcheap and wine 1.1.8
hi guys i have the same problem [Crying or Very sad] , on wine 1.1.27 and voipcheap 4.03 build 543, I can't log in and it crash when I try to open a menu. voipcheap is the cheapest voip service, and has an important feature the allow you to make phone call using your common home phone. This is the terminal output when trying to lunch it Code: fixme:ole:OLEPictureImpl_SaveAsFile
2019 Feb 04
0
Wine release 4.1
The Wine development release 4.1 is now available. What's new in this release (see below for details): - Support for NT kernel spinlocks. - Better glyph positioning in DirectWrite. - More accurate reporting of CPU information. - Context handle fixes in the IDL compiler. - Preloader fixes on macOS. - Various bug fixes. The source is available from the following locations:
2017 Oct 03
2
Clang/LLVM JIT - When to use "registerEHFrames()"
I'm catching up on this. Does this mean LLVM x64 JITTed code is not exception friendly or you can't catch exceptions inside LLVM JITTed code. The first one seems to indicate that the code is not ABI friendly or that not enough information is present to notify Windows of unwind tables. I'll ask the question another way: Does LLVM emit enough information so that RtlAddFunctionTable can