search for: src_root

Displaying 11 results from an estimated 11 matches for "src_root".

Did you mean: _rb_root
2013 Jan 24
4
Dependency Cycle with puppetlabs-mrepo
...classes" and hiera : I''m trying to mirror RHN repos : # ROLE CLASS > class site::yum_repository{ > > $repos = hiera(''site::yum_repository::repos'') > create_resources(mrepo::repo::rhn, $repos) > } > # HIERA DEFAULTS > mrepo::params::src_root : ''/srv/mrepo'' > mrepo::params::www_root : ''/srv/www/mrepo'' > mrepo::params::user : ''apache'' > mrepo::params::group : ''apache'' > mrepo::params::mailto : ''UNSET''...
2013 Mar 23
1
[LLVMdev] LLVM 3.2 compilation with RTTI enabled
Hi all, I'm having problems compiling LLVM 3.2 with RTTI enabled. Since my code makes heavy use of the Boost libraries, RTTI is a must. This is the script I use to compile (as root): SRC_ROOT=$PWD OBJ_ROOT=/export/apps/llvm INSTALL_ROOT=/usr/local mkdir -p $OBJ_ROOT cd $OBJ_ROOT $SRC_ROOT/configure --prefix=$INSTALL_ROOT \ --enable-ltdl-install \...
2003 Dec 05
0
[LLVMdev] Re: Makefile.config&setenv
...thanks > > yueqiang One other thing you might want to try is to put your object tree in a directory that is *not* inside of your source tree. Currently, we don't support using separate object trees that are subdirectories of the source tree. In other words: Will work: ========== SRC_ROOT=/home/yue/llvm OBJ_ROOT=/home/yue/llvm SRC_ROOT=/home/yue/llvm OBJ_ROOT=/home/yue/obj Might/will not work: ==================== SRC_ROOT=/home/hue/llvm OBJ_ROOT=/home/yue/llvm/obj -- John T. > > > ------------------------------------------------------------------------ > > #==...
2004 Apr 01
1
[LLVMdev] Makefile.config
Hi John, I have attached my Makefile.config. I noticed that I did'nt have SRC_ROOT and OBJ_ROOT variables defined as such in my environment. But I noticed that this is defined in the Makefile.config by default to the same values. All the same, I tried defining both these variables in my .cshrc, but I still get the same error. The main directory for me is /home/llvm, and I ha...
2014 Feb 15
3
[LLVMdev] cmake and make check?
...e test) might be > recognised by someone if you can post it. (For crashes llvm-lit often > only reports something about there being no output though. Obviously > that's useless). > > Cheers. > > Tim. > I'm just running this on x86 ubuntu. after cd $build_dir cmake $src_root make The first strange this is that if I go into build_dir/test and type "make", it does nothing. In $build_dir, with "make check", I get errors like: /home/rkotler/llvmc/build/test/Analysis/CostModel/X86/Output/uitofp.ll.script: line 1: /home/rkotler//home/rkotler/llvmc/...
2009 May 04
0
[LLVMdev] configure problems under msys
Hello, Bob > download the latest from the head of the trunk, then ran 'configure' under > msys and received the following....  has anyone done this under msys on a > windows pc?? Msys works fine for me. What is the version of msys you're using? What is the version of bash? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State
2009 May 04
2
[LLVMdev] configure problems under msys
...quiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <font size="-1"><font face="Verdana">i running msys 1.0 it appears; the bash sh is 2.04.0(1)<br> <br> just to be sure, i'm simply typing $SRC_ROOT/configure from my $OBJ_ROOT directory<br> <br> </font></font><br> Anton Korobeynikov wrote: <blockquote cite="mid:b087fca00905040859h6d7ea1b3wfd8dbc30d6584f98@mail.gmail.com" type="cite"> <pre wrap="">Hello, Bob </pre...
2014 Feb 13
3
[LLVMdev] cmake and make check?
I have not done cmake builds for a while. I did a : cmake /source tree make and all seems okay but then many tests fail when i do a make check I'm using pristine tip of the llvm tree. Ideas? TIA. Reed
2009 May 04
2
[LLVMdev] configure problems under msys
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> <font size="-1"><font face="Verdana">download the latest from the head of the trunk, then ran 'configure' under msys and received the following.... has anyone done this
2005 Aug 27
0
unhandled exception on 20050725 install from source on Fedora Core 4
...5 0x2f40a783 iterate_section_fields+0x113(callback=0x2f40b218, arg=0x7fcbfb7c) [/home/cj/downloads/wine/wine-20050725/dlls/setupapi/install.c:696] in setupapi (0x7fcbfb58) 6 0x2f40a9ae SetupInstallFromInfSectionW+0x116(owner=0x10022, hinf=0x7ff2aca0, section=0x7fcbfbd0, flags=0x3ff, key_root=0x0, src_root=0x0, copy_flags=0x4, callback=0x2f4104d0, context=0x7ffa4890, devinfo=0x0, devinfo_data=0x0) [/home/cj/downloads/wine/wine-20050725/dlls/setupapi/install.c:851] in setupapi (0x7fcbfb98) 7 0x2f40b15d InstallHinfSectionW+0x10d(hwnd=0x10022, handle=0x20030000, cmdline=0x7fee0522, show=0xa) [/home/cj...
2015 Nov 14
3
[lit] RFC: Per test timeout
Hi, A feature I've wanted in lit for a while is a having a timeout per test. Attached are patches that implement this idea. I'm e-mailing llvm-dev rather than llvm-commits because I want to gather more feedback on my initial implementation and hopefully some answers to some unresolved issues with my implementation. Currently in lit you can set a global timeout for all of the tests but