search for: llvmgcc_version

Displaying 12 results from an estimated 12 matches for "llvmgcc_version".

2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...================================== --- lib/llvm.exp (revision 65423) +++ lib/llvm.exp (working copy) @@ -116,8 +116,18 @@ # This procedure runs the set of tests for the test_source_files array. proc RunLLVMTests { test_source_files } { global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version + global listtests set timeout 60 + if { [ string length "$listtests" ] } { + set chan [open $listtests a] + foreach test $test_source_files { + puts $chan "$test" + flush $chan + } + return + } + set path [file join $objdir $subdir] #Make...
2009 Dec 13
0
[LLVMdev] Problem running 2.6 test-suite on cygwin
> LLVM tools and LLVM-GCC I've built seem to work. > Can it be due to LLVM_SRC_ROOT == LLVM_OBJ_ROOT? No. This is usually due to absence of llvm-gcc. You need reconfigure llvm once again with lvm-gcc path added and make sure it was hooked properly (look into Makefile.config for paths, etc). -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg
2009 Dec 13
3
[LLVMdev] Problem running 2.6 test-suite on cygwin
...As I mentioned, it looks like llvm-gcc is installed properly. From Makefile.config: LLVMGCC := /usr/local/bin/llvm-gcc.exe LLVMGXX := /usr/local/bin/llvm-g++.exe LLVMCC1 := /usr/local/libexec/gcc/i686-pc-cygwin/4.2.1/cc1.exe LLVMCC1PLUS := /usr/local/libexec/gcc/i686-pc-cygwin/4.2.1/cc1plus.exe LLVMGCC_VERSION := 4.2.1 LLVMGCC_MAJVERS := 4 LLVMGCC_LANGS := c,c++ It looks to me that this: make[4]: *** No rule to make target `Output/sse.expandfft.linked.rbc', needed by `Output/sse.expandfft.linked.bc'. Stop. means that make is trying to build this (from Makefile.programs): # Given an unoptimiz...
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...================================== --- lib/llvm.exp (revision 65432) +++ lib/llvm.exp (working copy) @@ -116,8 +116,18 @@ # This procedure runs the set of tests for the test_source_files array. proc RunLLVMTests { test_source_files } { global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version + global listtests set timeout 60 + if { [ string length "$listtests" ] } { + set chan [open $listtests a] + foreach test $test_source_files { + puts $chan "$test" + flush $chan + } + return + } + set path [file join $objdir $subdir] #Make...
2009 Jun 17
1
[LLVMdev] Configure problem of llvm2.5 in Mac OS X 10.4.11
...#39; LEX_OUTPUT_ROOT='' LIBADD_DL='' LIBOBJS='' LIBS='' LIBTOOL='' LINKALL='-Wl,-all_load' LLVMCC1='' LLVMCC1PLUS='' LLVMGCC='' LLVMGCCDIR='' LLVMGCCLIBEXEC='' LLVMGCC_LANGS='' LLVMGCC_MAJVERS='' LLVMGCC_VERSION='' LLVMGXX='' LLVM_BINDIR='' LLVM_CONFIGTIME='' LLVM_COPYRIGHT='Copyright (c) 2003-2008 University of Illinois at Urbana-Champaign.' LLVM_CROSS_COMPILING='' LLVM_DATADIR='' LLVM_DOCSDIR='' LLVM_ETCDIR='' LLVM_INCLUDEDIR='...
2009 Dec 12
4
[LLVMdev] Problem running 2.6 test-suite on cygwin
After following all steps from http://llvm.org/docs/TestingGuide.html#testsuiterun, I've got this: make[1]: Entering directory `/cygdrive/c/projects/thesis/llvm-suite-2.6/llvm-2.6/projects/test-suite/SingleSource' make[2]: Entering directory `/cygdrive/c/projects/thesis/llvm-suite-2.6/llvm-2.6/projects/test-suite/SingleSource/UnitTests' make[3]: Entering directory
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
On Wed, Feb 25, 2009 at 10:26:02AM -0800, Chris Lattner wrote: > > On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote: > > > On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote: > >> I haven't tested with objdir != srcdir. > > > > Ok, that was broken. Attached is a smaller diff that should work in > > all > > cases. > > This
2009 Feb 26
1
[LLVMdev] [PATCH] Parallelized make check
...======================== --- test/lib/llvm.exp (revision 65468) +++ test/lib/llvm.exp (working copy) @@ -116,8 +116,18 @@ # This procedure runs the set of tests for the test_source_files array. proc RunLLVMTests { test_source_files } { global srcroot objroot srcdir objdir subdir target_triplet llvmgcc_version + global listtests set timeout 60 + if { [ string length "$listtests" ] } { + set chan [open $listtests a] + foreach test $test_source_files { + puts $chan "$test" + flush $chan + } + return + } + set path [file join $objdir $subdir] #Make...
2009 Feb 25
2
[LLVMdev] [PATCH] Parallelized make check
On Feb 24, 2009, at 10:03 PM, Julien Lerouge wrote: > On Tue, Feb 24, 2009 at 06:24:17PM -0800, Julien Lerouge wrote: >> I haven't tested with objdir != srcdir. > > Ok, that was broken. Attached is a smaller diff that should work in > all > cases. This sounds really cool Julien! Two questions: 1) does it preserve the checking that the existing tcl stuff does, which
2009 Jun 18
0
[LLVMdev] Configure problem of llvm2.5 in Mac OS X 10.4.11
...BOBJS='' > LIBS='' > LIBTOOL='' > LINKALL='-Wl,-all_load' > LLVMCC1='' > LLVMCC1PLUS='' > LLVMGCC='' > LLVMGCCDIR='' > LLVMGCCLIBEXEC='' > LLVMGCC_LANGS='' > LLVMGCC_MAJVERS='' > LLVMGCC_VERSION='' > LLVMGXX='' > LLVM_BINDIR='' > LLVM_CONFIGTIME='' > LLVM_COPYRIGHT='Copyright (c) 2003-2008 University of Illinois at > Urbana-Champaign.' > LLVM_CROSS_COMPILING='' > LLVM_DATADIR='' > LLVM_DOCSDIR='' > L...
2006 Aug 03
0
[LLVMdev] Building llvm under cygwin
Hello Anton Thu, 3 Aug 2006 12:38:54 +0400 you wrote: > I've updated it yesterday and rebuilt - llvm built fine. But when > building llvm-gcc4 (also updated yesterday from new /trunk > directory) it fails with the same error. You might easily get llvm-gcc4-mingw32 binaries from "prerelease" directory. Since stdcall, fastcall & dllimport stuff is unsupported right now,
2006 Aug 01
15
[LLVMdev] Building llvm under cygwin
> > If you're building llvm-gcc4, you don't need the runtime libraries, so > I'd just stick with the "tools-only" build and declare success. If > you're building llvm-gcc3, I'd suggest you switch to llvm-gcc4 :) I switched to llvm-gcc4 but when I run make from obj folder i run into folowing errors: Can't find a library with no dependencies at