search for: tp52769p52771

Displaying 3 results from an estimated 3 matches for "tp52769p52771".

2012 Dec 21
0
[LLVMdev] llvm 32bit with 64bit output?
You can generate 64-bit binaries with a 32-bit LLVM without any issue. The target machine in your case may differ from the "host target", but it shouldn't be any problem. I have managed to compile LLVM on Windows using the compiler from Windows 7 SDK (and CMake). I don't remember what runtime binaries it required, but I guess it was the regular MSVC runtime. -Krzysztof --
2012 Dec 21
2
[LLVMdev] llvm 32bit with 64bit output?
...naries of my language without a console if asked. But that is way way ahead of me haha, sorry. I digress. Thanks Krysztof, it is very good to know finally so i can start working in my little project. -- View this message in context: http://llvm.1065342.n5.nabble.com/llvm-32bit-with-64bit-output-tp52769p52771.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2012 Dec 20
4
[LLVMdev] llvm 32bit with 64bit output?
I am looking at starting a project to make a toy language that is targeted purely at 64bit windows. I have never used llvm or anything like it i am just trying to learn new things. However there are several problems, as far as i have seen, with compiling llvm in 64bit on windows. So i was wondering if i compile a 32bit version of llvm and use that can my resulting compiler output 64bit binaries?