similar to: [LLVMdev] LLVM 2.9 64bits on Visual Studio 9

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] LLVM 2.9 64bits on Visual Studio 9"

2011 Aug 15
0
[LLVMdev] LLVM 2.9 64bits on Visual Studio 9
FYI, I have confirmed it works on VS10SP1 with x64|Release. E:\llvm\build\cmake-x64-vs10>bin\Release\Fibonacci.exe 24 verifying... OK We just constructed this LLVM module: --------- ; ModuleID = 'test' (snip) --------- starting fibonacci(24) with JIT... Result: 46368 ...Takumi 2011/8/11 <gleizesd at gmail.com>: > Hello everybody, > > I have sucessfully compiled LLVM
2009 Apr 11
3
Can not get HLSW v1.3.1 to run in Ubuntu
I'm hoping someone can help me to get HLSW v1.3.1 to run in Ubuntu 8.1o with WINE v1.1.18. The install program runs fine but when I go to launch HLSW the program never starts. I'm pretty new to linux so any help will be appreciated.
2010 Jul 09
10
Torchlight Performance
Hey all, finally got rid of windows, though we'll see how long that lasts... I really do enjoy my video games and am not looking forward to not having any of them work (can't seem to get any that I expected to work). Anyway... Wine: wine-1.2-rc6-44-gcd72aef Program: Torchlight v1.15 Computer: AMD Athlon X2 2.2Ghz 3GB DDR2 RAM Nvidia GeForce 9600M Fedora 13 Linux Kernel
2011 Oct 31
3
Wine problem with Orcs Must Die
Hi I've never used wine before, today I wanted to run Orcs Must Die Demo . exe I install it, but when i try run .exe in wine, nothing happens, I dont know why it doesn't work, maybe i should install some directx ? it should work, http://appdb.winehq.org/objectManager.php?sClass=version&iId=24607 do you know what is needed to run this game? greetings
2011 Sep 04
7
Photoshop cs5 broke after update
I was using Photoshop CS5 on my Ubuntu 11.04 system fine. I did an update of wine, now it won't work. I have tried to uninstall and reinstall wine, and copied the PS install from windows, it still has errors. > -desktop:~$ wine "c:\Program Files\Adobe\Adobe Photoshop CS5\Photoshop.exe" > wine: Call from 0x7b839f22 to unimplemented function msvcp90.dll.??0?$basic_string at
2010 Jul 30
6
Wine crash wien diferent games, desont even start
Ok, I'm new here at the forum and I have a doubt: I tried to play Torchlight and iRO (and there is another game I tried to start but dont rememebr which one), and I followed all the instruction on the wine game review but I can't play them, wine just starts (the window of windows desktop start with the name of "env") then nothing happends the window just close. I have
2011 Jun 21
1
Setting up a non-install .exe?
Hey y'all, I have a program that I downloaded of which the .exe file is the entire program. It is not an install executable. On my Windows machine it simply runs the program when opened. How do I set up this executable in Wine? Thus far I get the error: user at user:~$ wine thumbcache_viewer.exe fixme:actctx:parse_depend_manifests Could not find dependent assembly
2012 Feb 08
4
Kindle PC 1.8.1 and wine 1.3.32
Kindle crashes in wine. http://appdb.winehq.org/objectManager.php?sClass=version&iId=24648 I am using arch linux. I downgraded wine because it was not working in latest wine from arch. I also tried other Kindle for PC versions and failed. Code: wine: Unhandled page fault on read access to 0x00000000 at address 0x7855753a (thread 002c), starting debugger... Unhandled exception: page fault
2011 Oct 15
6
winamp errors
Ive installed Winamp 5621 in Wine 1.3.28 using these instructions http://appdb.winehq.org/objectManager.php?sClass=version&iId=2723 but receive the following errors when trying to run it. Code: sevy at sevy-desktop:~$ env WINEPREFIX=~/.wine-winamp wine 'C:\Program Files\winamp\winamp.exe' fixme:ntoskrnl:KeInitializeSpinLock stub: 0x548024 fixme:advapi:RegisterTraceGuidsW (0x100778a,
2009 Nov 14
1
Filmon HDI Player
Hello, wonder if anyone can help here - perhaps a winetrick (tried DIVX - doesn't help, and slight problems with Ubuntu 9.10, like some other Linux programs have). I have tried to install a MS Windows program to watch TV, films etc. over the Internet from filmon.com. The program gives a "network problem" message after trying to authenticate the log-in name and password. There is no
2018 May 30
0
[SROA][DebugInfo][GSoC] Testing SROA on amalgamated sqlite source
> > > `SROA' is an early stage pass running at the very beginning of the > pipeline in `-O{1,2,3}'. Greg Bedwell's report from his DExTer tool > shows SROA on function as one of the major culprits of Debug Info > loss. > > The methodology I used is with the opt-bisect-limit option on clang, so it's not strictly the case that the results presented
2007 Sep 05
2
[LLVMdev] Seeing a crash with ConstantFP::get
Hola LLVMers, I'm getting a crash when using ConstantFP::get. I can repro it by adding one line to the Fibonacci example program: int main(int argc, char **argv) { int n = argc > 1 ? atol(argv[1]) : 24; // Create some module to put our function into it. Module *M = new Module("test"); // We are about to create the "fib" function: Function
2011 Apr 20
5
Fibonacci
Hi! I am trying to work out the code to get a Fibonacci sequence, using the while() loop and only one variable. And I can't figure it out. Fibonacci<-c(1,1) while (max(Fibonacci)<500){ Fibonacci<-c(Fibonacci, (max(Fibonacci) + ?(Fibanacci))) } How can I tell R to take the value one before the max value? (Without defining another variable) (Probably super easy... I am a
2007 Sep 05
0
[LLVMdev] Seeing a crash with ConstantFP::get
On Sep 5, 2007, at 2:21 PM, Chuck Rose III wrote: > Hola LLVMers, > > > > I’m getting a crash when using ConstantFP::get. > > > > I can repro it by adding one line to the Fibonacci example program: > > > > int main(int argc, char **argv) { > > int n = argc > 1 ? atol(argv[1]) : 24; > > > > // Create some module to put our function
2004 Feb 03
3
Implementating streams in R
Dear all, I have an implementation of streams in R. The current implementation of delay() and force() is inspired from the LISP implementation found in Part VI "Languages for AI problem solving" of "Artificial Intelligence" by G. Luger. I have tested it with the Fibonacci example in the same book (see examples below). It works but I do run into a problem when I try to
2007 Sep 05
2
[LLVMdev] Seeing a crash with ConstantFP::get
It's in debug. I'm having a look at the assembler it's producing right now and it's definitely a little odd for what should be a simple assignment in zeroSignificand. ________________________________ From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Dale Johannesen Sent: Wednesday, September 05, 2007 2:39 PM To: LLVM Developers Mailing
2007 Sep 06
0
[LLVMdev] Seeing a crash with ConstantFP::get
Hola Dale, I spent some time walking through what's going on with a friend of mine from VStudio. Category is given 2 bits in the APFloat class definition. It's sign extending the enum value for the comparisons when it loads it out of the class, so the 2 becomes a -2 and the comparison fails. He sent me a piece of code which I might be able to use to force the issue. I'll update
2018 Sep 21
2
can't build/run after adding lib to Fibonacci example, even reverting the complete llvm tree does not help
my build environment: Win7 x64 VStudio 2017 Community Edition 15.8.4 (latest) CMake 3.12.1 (x86) git 2.19.0 (latest, x64) Python 2.7.2 (x86) x64 Native Tools Command Prompt for VS 2017 directory structure: test     llvm <-- git clone https://github.com/llvm-mirror/llvm, git checkout release_70       tools         clang <-- git clone https://github.com/llvm-mirror/clang, git checkout
2002 Apr 09
1
Fortran (77) in R
Hi, I'm learning Fortran and trying to load a Fortran subroutine into R. I've done: R SHLIB Fibonacci.f and it compiled fine. Then I went into R and done: > dyn.load("Fibonacci.so") > Fib <- function(n) { + .Fortran("Fibonacci", + as.integer(n))[[1]] + } > Fib(5) Error in .Fortran("Fibonacci", as.integer(n)) :
2004 Nov 05
0
[LLVMdev] Re: LLVM Visual Studio Project files
Solved it. Looking at the source of bison, I found an undocumented environment variable M4 that points to the m4 binary. Setting it to the absolute path did the job. When not present, it ought to find it in the path as it uses execvp. At least on Unix. I have no idea what it does on Windows as I could not get the source used to build the Windows version (the installer claimed it installed the