similar to: [LLVMdev] problem running llvm-gcc from LLVM 4.2 binary download for Mingw

Displaying 20 results from an estimated 40000 matches similar to: "[LLVMdev] problem running llvm-gcc from LLVM 4.2 binary download for Mingw"

2008 Dec 23
0
[LLVMdev] problem running llvm-gcc from LLVM 4.2 binary download for Mingw
Hello, Bob > i just downloaded LLVM 4.2 binaries for Mingw (including the GCC 4.2 > front-end), and received the infamous "llvm-gcc: CreateProcess: no such > file or directory" error message when trying to compile hello.c from the > command-line.... Are you running Vista? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State
2008 Dec 24
1
[LLVMdev] problem running llvm-gcc from LLVM 4.2 binary download for Mingw
hi anton, found the problem -- the example in the getting started guide showed... % llvm-gcc hello.c -o hello which, of course, requires the standard 'ld' command -- which, it turns out, was the 'file not found' but then, this worked.... % llvm-gcc -O3 -emit-llvm hello.c -c -o hello.bc so i'm fine (for now).... when i get a little further down the road in investigating
2009 Dec 02
5
[LLVMdev] LLVM MinGW binaries on Vista issue
I'm attempting to use the above as described here http://stackoverflow.com/questions/1816469/llvm-mingw-installation-on-vista ...and getting the following error when attempting "llvm-gcc -o hello.exe hello.c" llvm-gcc: CreateProcess: No such file or directory I've heard it may be due to the way GCC is passing args to CreateProcess as in this thread
2002 Jul 12
1
OpenSSH & MinGW?
I'm interested in building just the OpenSSH clients with MinGW. I figure that the OpenSSL libraries and just the ssh client should be relatively easy to build as they wouldn't require fork()/exec() and the like (well, ssh_askpass() uses fork()/exec(), but that's minor). The other clients, scp and sftp, will require #ifdef hacks so that they use the Windows spawn()/CreateProcess()
2007 Nov 06
2
[LLVMdev] Getting started using MinGW binary release?
> Sorry, this wasn't mentioned in documentation. llvm-gcc was built with > '--enable-threads' flag, thus it requires win32 pthread port. Keith have > already given a right link for dlls download. Just to make stuff clear: you'll have to download pthreadGC1.dll, rename it to pthreadGC.dll and put it somewhere in your PATH. All try to build all future versions of binaries
2009 Dec 15
0
[LLVMdev] LLVM MinGW binaries on Vista issue
> I'm attempting to use the above as described here > > http://stackoverflow.com/questions/1816469/llvm-mingw-installation-on-vista > > ...and getting the following error when attempting "llvm-gcc -o hello.exe hello.c" > > llvm-gcc: CreateProcess: No such file or directory I also get the same issue when trying to run the LLVM MinGW binaries on an XP box,
2014 Sep 18
3
patch for win_utf8_io.c: vsnprintf_s vs. MinGW
lvqcl wrote: > Oops. It seems that vsnprintf_s isn't always available on MinGW platform: > MinGW declares this function only if MINGW_HAS_SECURE_API macro is defined. > That's because WinXP version of msvcrt.dll doesn't contain secure functions > like vsnprintf_s. > > Maybe it's better to revert vsnprintf_s to vsprintf or to use vnsprintf? Ok, we need to drop
2005 Feb 01
2
How to compile "iaxclient" with MinGW/Cygwin
Hello, I can?t compile "iaxclient", because one needs to compile the new version "wiax.dll". I tried to compile it under MinGW/Cygwin, but I had the messages like: cc -I. -Igsm/inc -Iportaudio/pa_common -Iportaudio/pablio -Iportmixer/px_common -Ilibspeex/include -g -O2 -DSPEEX_PREPROCESS=1 -DNEWJB -Ilibiax2/src -IAXC_IAX -DLIBIAX -DSPEEX_EC=1 -DWIN32 -DBUILDING_DLL -c
2006 Aug 24
1
[ win32utils-Bugs-5503 ] Process::create() checks return value of CreateProcess against 0, should be false
Bugs item #5503, was opened at 2006-08-23 21:27 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=411&aid=5503&group_id=85 Category: win32-process Group: Code Status: Open Resolution: None Priority: 3 Submitted By: David Haney (darius42) Assigned to: Nobody (None) Summary: Process::create() checks return value of CreateProcess against 0, should be false
2009 Sep 02
1
Question on CreateProcess and handle inheritance
Hi, I just wanted to make sure that I''m not confused by Michael Buselli''s comment and patch. As far as I can tell, if you set the bInheritHandle in the SECURITY_ATTRIBUTES structure that''s passed to CreateProcess to true, it''s the same as calling SetHandleInformation(handle, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT) after the fact. CreateProcess:
2007 Nov 07
1
[LLVMdev] Getting started using MinGW binary release?
Sam, > Am I supposed to install MinGW (maybe MSYS) and extract prebuilt > packages ( llvm-2.1-x86-mingw32.tar.bz2 and > llvm-gcc4.0-2.1-x86-mingw32.tar.bz2) to C:\MinGW ?? llvm-as != as. You'll need to have binutils installed in order to compile & link. -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2010 Jan 23
10
Trouble creating mingw binary
Hi, I''m trying to build a binary for win32-open with a mingw install but I''m having trouble. I''ve installed MinGW 5.1.6 and I''ve got gcc, etc. But, when I run "ruby extconf.rb; make" I get the following error: C:\Documents and Settings\djberge\Repositories\win32-open3\ext>ruby extconf.rb checking for ruby/io.h... no checking for rb_pid_t in
2008 Jun 16
1
[LLVMdev] Debugging with llvm-gcc/mingw doesn't seem to work
Hello, Argiris > Can you please try out the steps I mentioned before with the linux > binaries ? I just want to make sure that there's not something wrong > with my setup. Here they are: $ cat dbg.c int main() { return 0; } $ gdb a.out GNU gdb 6.8 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later
2009 Dec 04
0
[LLVMdev] LLVM MinGW binaries on Vista issue
Hello > Is this the cause or is there something else I need to due with the LLVM binaries? Yes, this might be a possible issue. I'm not sure whether apple's gcc 4.2 (which llvm-gcc 4.2 is based originally on) has that vista workaround patches. Unfortunately, I don't have vista box around to check / debug this issue. -- With best regards, Anton Korobeynikov Faculty of Mathematics
2008 May 30
4
[LLVMdev] Possibly Vista-related Windows/MinGW Compilation Issues
Hello, Jonathan > I thought I'd messed up something related to the linker, > but I couldn't explain why XP would work using the same steps. The only thing comes to my mind seeing this: perl from msysDTK works differently (somehow) on Vista, thus llvm-config is broken which leads to missed libraries, broken dependencies, etc. I'd suggest you to compare stuff on different
2007 Dec 17
2
[LLVMdev] how to compile mingw-llvm-gcc in windows
Hello, Dueky > 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 mingw-llvm-gcc in windows". In general, compilation of llvm-gcc for mingw is the same as compilation of llvm-gcc for any other platform. However, there are
2006 Nov 25
2
[LLVMdev] mingw binary is corrupt
Hello, Matthew. > Someone reported this earlier but the situation remains unchanged. I'm sorry for delay. Files will be uploaded to LLVM download section soon. -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2011 Oct 27
1
[LLVMdev] llvm-gcc mingw-w64 64-bit version
Hi, Has anyone built llvm-gcc-4.2-2.9 using mingw-w64 on Windows 7 64-bit OS? The binaries available in the download website LLVM-GCC 4.2 Front End Binaries for Mingw32/x86<http://llvm.org/releases/2.9/llvm-gcc4.2-2.9-x86-mingw32.tar.bz2> do not build applications (not surprisingly) for 64-bit Windows 7 (-m64 is disabled). I am both compiling and linking an application (to produce a
2008 Jul 28
1
[LLVMdev] Problem
On Sun, Jul 27, 2008 at 10:15 PM, Willow Schlanger <wschlanger at gmail.com> wrote: > Yes I am running Vista. I tried running the program as an Administrator > but I get the same error. What is a valid -mtune argument I can try? generic *is* a valid value for mtune; however, it's was added to gcc relatively recently. This is only a rough guess, but the most likely issue is that
2011 Oct 06
3
[LLVMdev] [cfe-dev] [Patch] Build failure on Windows+MinGW (GCC and Clang)
On Thu, Oct 6, 2011 at 2:09 PM, Ruben Van Boxem <vanboxem.ruben at gmail.com> wrote: > You're welcome! Please remember that MinGW-w64 does not mean it is 64-bit. > It provides both 32- and 64-bit headers/libs. The "w64" in the name was > originally because that was the project's principal goal, among extending > the API completeness and compatibility with MSVC.