search for: objroot

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

Did you mean: obj_root
2004 Jul 20
0
broken configure in tftp-hpa 0.37
...syntax error near unexpected token `;;' ./configure: line 11843: ` ;;' Needed this patch to get things rolling with autoconf 2.59: --- tftp-hpa-0.36/configure.in 2004-01-15 22:15:46.000000000 +0200 +++ tftp-hpa-0.37/configure.in 2004-07-20 18:32:24.000000000 +0300 @@ -129,9 +129,12 @@ OBJROOT=`pwd` LIBXTRA=false -AC_SEARCH_LIBS(xmalloc, iberty, , LIBXTRA=true AC_LIBOBJ(xmalloc)) -AC_SEARCH_LIBS(xstrdup, iberty, , LIBXTRA=true AC_LIBOBJ(xstrdup)) -AC_SEARCH_LIBS(bsd_signal, bsd, , LIBXTRA=true AC_LIBOBJ(bsdsignal)) +AC_SEARCH_LIBS(xmalloc, iberty, ,LIBXTRA=true +[AC_LIBOBJ(xmalloc)])...
2003 Jun 30
0
[LLVMdev] Autoconf Support
...warned that many files have changed to use header files that wrap the autoconf configuration information, so you may end up doing a large rebuild upon your next update. When you checkout llvm, run ./configure to configure the build environment. The following options are of interest: --with-objroot=<path> : Sets the pathname where your object files go. --with-objroot=/localhome/$USER is analogous to putting things in /localhome like we always have. --enable-optimized : Builds an optimized build (as opposed to a debug build) by default. There are others as well. The configure hel...
2017 Jan 20
1
[PATCH] drm/nouveau/client: use rb_entry()
...container_of(*ptr, typeof(*this), node); + rb_entry(*ptr, typeof(*this), node); parent = *ptr; if (object->object < this->object) ptr = &parent->rb_left; @@ -243,7 +243,7 @@ nvkm_client_search(struct nvkm_client *client, u64 handle) struct rb_node *node = client->objroot.rb_node; while (node) { struct nvkm_object *object = - container_of(node, typeof(*object), node); + rb_entry(node, typeof(*object), node); if (handle < object->object) node = node->rb_left; else -- 2.9.3
2008 Oct 21
4
[LLVMdev] Replacing llvm-gcc in Xcode 3.1.1 with svn version
...eveloper/usr/local/bin/ 2. Build llvm-gcc # cd llvm-gcc # make clean # rm -rf build # mkdir -p build/obj build/dst build/sym # (NOTE: I don't want PowerPC code) # gnumake install RC_OS=macos RC_ARCHS="i386" TARGETS="i386 x86_64" SRCROOT=`pwd` OBJROOT=`pwd`/build/obj DSTROOT=`pwd`/build/dst SYMROOT=`pwd`/build/sym 3. Replace old llvm-gcc with new one # rm -rf /Developer/usr/llvm-gcc-4.2 # ditto build/dst / ------ rest only once ------- 4. Fix libLTOs # rm /Developer/usr/lib/libLTO.dylib # ln -sf /Developer/usr/local/lib...
2009 Feb 25
3
[LLVMdev] [PATCH] Parallelized make check
...b/llvm.exp =================================================================== --- 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 + } +...
2003 Sep 06
0
[LLVMdev] Build and Test Suite Changes
Dear All, This morning, I have commited to CVS my changes for building LLVM with separate source and object directories. If you're building from mainline CVS, this will affect you. In a nutshell, the --with-objroot option is gone. To use a separate directory for your object files, you now do it the autoconf way: change your current working directory to where you want the object files to live, run the configure script with it's absolute pathname, and then type "make" in the build directory....
2009 Feb 25
0
[LLVMdev] [PATCH] Parallelized make check
...b/llvm.exp =================================================================== --- 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 + } +...
2004 Nov 29
1
[LLVMdev] QMTest vs. Dejagnu
> > Cons of QMTest: > > 1) You have to use the gui to add directories. > > I think you're wrong. Manually creating a directory would work, as QMTest does > not place anything special in directories. I may have worded this poorly, but I think you have to use the gui to add new directories or tests, or specific tests. Otherwise, it does not know what to do with those
2005 Feb 07
2
tiny patch for klibc 0.198
...ds during incremental. Feel free to include it. Regards Harri -------------- next part -------------- diff -ur old/klibc-0.198/MCONFIG klibc-0.198/MCONFIG --- old/klibc-0.198/MCONFIG 2004-10-14 06:32:24.000000000 +0200 +++ klibc-0.198/MCONFIG 2005-02-06 14:46:27.465647751 +0100 @@ -7,8 +7,9 @@ OBJROOT = $(SRCROOT) # Kernel trees (source and obj) - can potentially be different -KRNLSRC = $(SRCROOT)/linux -KRNLOBJ = $(SRCROOT)/linux +# KRNLSRC = $(SRCROOT)/linux +KRNLSRC := /lib/modules/$(shell /bin/uname -r)/source +KRNLOBJ = $(KRNLSRC) ARCH = $(shell uname -m | sed -e s/i.86/i386/ -e s/su...
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 + } +...
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