similar to: [LLVMdev] how to compile mingw-llvm-gcc in windows

Displaying 20 results from an estimated 30000 matches similar to: "[LLVMdev] how to compile mingw-llvm-gcc in windows"

2007 Dec 17
0
[LLVMdev] how to compile mingw-llvm-gcc in windows
Anton-- I had some problems just getting a binary of mingw to run on my Windows box, so perhaps, if you're willing, a step-by-step "download this, install it here, download this other, install it here, download this optional piece if you want X and install it here, now compile hello.cc and look at what you've got" kind of installation guide would be helpful. (I got lost between
2007 Dec 18
0
[LLVMdev] how to compile mingw-llvm-gcc in windows
Hello, llvm-dev. thank you for your interest in my question. Currently, I compiled simple c source code (hello.c) in lunux and windows, and I tried to simple test . first case: hello.bc (compiled with "-emit-llvm" on windows) -> lli.exe(linux). second case: hello.bc (compiled with "-emit-llvm" on linux) -> lli.exe(windows). second case return good result. but First case
2009 Aug 29
2
[LLVMdev] Build problems with MinGW
Grabbed the latest bits from SVN (, tried to build with MinGW. I get a cc1plus.exe out of memory error while trying to "make ENABLE_OPTIMIZED=1" on the X86CodeEmitter. I can get a full stack trace if necessary, but has anybody else run into this problem? Only seems to happen with the Release build-I got a full Debug build to work fine. Ted Neward Java, .NET, XML Services
2009 Aug 29
0
[LLVMdev] Build problems with MinGW
Hello, Ted > Grabbed the latest bits from SVN (, tried to build with MinGW. I get a > cc1plus.exe out of memory error while trying to “make ENABLE_OPTIMIZED=1” on > the X86CodeEmitter. I can get a full stack trace if necessary, but has > anybody else run into this problem? Only seems to happen with the Release > build—I got a full Debug build to work fine. Dunno for top of the
2008 Feb 15
2
[LLVMdev] Question on link error
Hello, Ted > __main is supposed to be inside hello.bc, so why can�t lli find it? No, it shouldn't be there. On targets, which lacks init sections (for example, all win-based, like mingw & cygwin) __main is used to call static constructors and relevant stuff. The call to __main is assembled early in the main routine before the actual code will be executed. I'll try to look into
2007 Jul 05
0
[LLVMdev] Noob questions about setting up on Win32
Here's an equally dumb question: the wiki page you mention suggests installing bison and flex and a few other packages. But I don't see these packages anywhere on the Sourceforge MinGW page; do I get them from elsewhere, and then build them using MinGW's gcc? Ted Neward Java, .NET, XML Services Consulting, Teaching, Speaking, Writing http://www.tedneward.com > -----Original
2007 Jul 04
2
[LLVMdev] Noob questions about setting up on Win32
Hello, Ted. > (*) build LLVM itself > (*) build programs with LLVM > > I have a MingW32 setup on a WinXP machine; You can see http://wiki.llvm.org/index.php/Notes:MingW32 to get instructions how to build LLVM on mingw32 box. For building programs with LLVM itself you'll probably need llvm-gcc4, which you can either compiled by yourself (tricky on mingw32) or use prebuilt one in
2007 Dec 17
0
[LLVMdev] how to compile mingw-llvm-gcc in windows
Dear LLVM-DEV Hello I am Dueky. I knew about llvm 3 months ago, and I have studied it.. I read Document for llvm in llvm.org, and I have tried compile to source file about llvm and llvm-gcc. But I could not make a success of compile to the "mingw-llvm-gcc in windows". I saw binary file "mingw-llvm-gcc for windows" , but I couldn't find the "how to compile to the
2008 Jan 10
2
[LLVMdev] HOWTO on LLVM with ....
Is there an explicit document describing how to do LLVM with Cygwin? Or with Solaris Dev Express? And is LLVM considered a “safe” replacement for gcc on MacOS? In other words, if I’m doing some ObjC and C/C++ on the MacOS, if I drop LLVM in, is it going to create some strange kinds of heartache later on? Ted Neward Java, .NET, XML Services Consulting, Teaching, Speaking, Writing
2008 Feb 13
1
[LLVMdev] Is there someone tried LLVM 2.1 on Visual Studio 2005?
If you are using the Express versions of Visual Studio, the Platform SDK(windows.h) is a seperate install that you have to download. Kevin Tew Ted Neward wrote: > Thanks--I was offline when I wrote it, couldn't Google. Found it in about 5 > seconds once I was back online. > > Second question: I'm getting various build errors relating (it seems) to > configuration:
2008 Feb 15
2
[LLVMdev] Question on link error
So I’ve built llvm-2.2 using Cygwin, and I think I’ve got all the right bits in the right places, but I’m getting a strange error when running through the hello.c examples from the Web site: Ted at XPLanguages /cygdrive/c/Projects/Exploration/llvm $ gcc hello.s -o hello.native Ted at XPLanguages /cygdrive/c/Projects/Exploration/llvm $ ls hello.bc hello.c* hello.exe*
2008 Feb 27
3
[LLVMdev] Slight troubles following "Getting Started" instructions
As a suggestion, what about having "Common Uses for LLVM" that list out what the LLVM n00b needs if he wants to... (*) Get hello.c to compile and run in LLVM bitcode (This is the "what's the absolute minimum I need to do to see this thing in action?" question.) (*) Use LLVM as a back-end for a custom language or interpreter (This is the "OK now that I've seen the
2008 Feb 13
2
[LLVMdev] Is there someone tried LLVM 2.1 on Visual Studio 2005?
I simply found it at: http://getgnuwin32.sourceforge.net/ Seung ---- Original message ---- >Date: Tue, 12 Feb 2008 21:11:04 -0800 >From: "Ted Neward" <ted at tedneward.com> >Subject: Re: [LLVMdev] Is there someone tried LLVM 2.1 on Visual Studio 2005? >To: "'LLVM Developers Mailing List'" <llvmdev at cs.uiuc.edu> > >I'm sorry,
2008 Feb 15
0
[LLVMdev] Question on link error
On Feb 14, 2008, at 6:54 PM, Ted Neward wrote: > So I’ve built llvm-2.2 using Cygwin, and I think I’ve got all the > right bits in the right places, but I’m getting a strange error when > running through the hello.c examples from the Web site: How did you create hello.s? What version of llvm-gcc are you using? 4.2? Have you tried compiling hello.s to hello.native with llvm-gcc
2008 Feb 27
0
[LLVMdev] Slight troubles following "Getting Started" instructions
On Tue, 26 Feb 2008, Ted Neward wrote: > As a suggestion, what about having "Common Uses for LLVM" that list out what > the LLVM n00b needs if he wants to... > > (*) Get hello.c to compile and run in LLVM bitcode (This is the "what's the > absolute minimum I need to do to see this thing in action?" question.) > (*) Use LLVM as a back-end for a custom
2008 Feb 13
0
[LLVMdev] Is there someone tried LLVM 2.1 on Visual Studio 2005?
Thanks--I was offline when I wrote it, couldn't Google. Found it in about 5 seconds once I was back online. Second question: I'm getting various build errors relating (it seems) to configuration: can't find windows.h and so forth. Where (or to whom) is the best place to report these and iterate until we fix them? Ted Neward Java, .NET, XML Services Consulting, Teaching, Speaking,
2009 Jan 13
2
[LLVMdev] Build problems on MinGW
Hello everyone, I'm struggling to get a working LLVM installation on MinGW on Windows Vista. I have the following packages: * LLVM 2.4 * Gnu make 3.81 * GCC 3.4.5 (mingw-vista special r3) * Perl 5.6.1 * Texinfo 4.11 * LD (which I took to be representative of Binutils version) 2.17.50 20060824 None of these are marked "bad" in your compatibility matrix, but not many of them are
2009 Jan 13
0
[LLVMdev] Build problems on MinGW
Hello, Duncan > * LD (which I took to be representative of Binutils version) 2.17.50 > 20060824 > None of these are marked "bad" in your compatibility matrix, but not > many of them are marked "good" either. > > During build I get lots of missing symbol errors from LD. Near the end > it goes through a monster link step that spews many screenfuls of link
2009 Jul 11
4
[LLVMdev] LLVMdev Digest, Vol 61, Issue 25
Hi Anton, The problem is in getting the system configured. Below is the crash I get in configure. Your comment regarding gnuwin32 not being needed is interesting - I actually installed gnu bison/flex to get past an earlier crash in configure. Thats why I was suggesting that a precompiled OBJ_ROOT for MingW32 would be a good idea - configure appears to be inherently fragile, and requires more
2007 Jul 04
1
[LLVMdev] Noob questions about setting up on Win32
I’d like to get LLVM up and running on my Win32 box, preferably from source. I had a look across the LLVM website, and I’m not yet entirely sure which bits I need and where in order to: (*) build LLVM itself (*) build programs with LLVM I have a MingW32 setup on a WinXP machine; said machine also has latest VS2005 (and Orcas, for that matter) on it. What else do I need? Ted Neward Java,