search for: extra_configure_args

Displaying 8 results from an estimated 8 matches for "extra_configure_args".

2014 Mar 14
2
[LLVMdev] buildbot change for Mips slave - please review
...(revision 203958) +++ buildbot/osuosl/master/config/builders.py (working copy) @@ -90,6 +90,8 @@ 'builddir':"llvm-mips-linux", 'factory': LLVMBuilder.getLLVMBuildFactory("mips-linux-gnu", timeout=40, config_name='Release+Asserts', extra_configure_args=["--with-extra-options=-mips32r2", + "CC=/mips/proj/build-compiler/clang-be-o32-r203581/bin/clang", + "CXX=/mips/proj/build-compiler/clang-be-o32-r203581/bin/clang++", "--with-extra-ld-options=-mips32r2"])}, {'name': "l...
2013 Jan 15
0
[LLVMdev] Adding a Buildbot Config
...ew build configuration? Do I edit >>> one of the .py files in zorg? >> >> Can you get the desired effect with --with-extra-options=? > > Probably, but where do I put that? It is a configure argument that specifies extra options to compile with. For buildbots, it is the extra_configure_args parameter for getClangBuildFactory (look at examples in builders.py). Dmitri -- main(i,j){for(i=2;;i++){for(j=2;j<i;j++){if(!(i%j)){j=0;break;}}if (j){printf("%d\n",i);}}} /*Dmitri Gribenko <gribozavr at gmail.com>*/
2013 Jan 15
2
[LLVMdev] Adding a Buildbot Config
Dmitri Gribenko <gribozavr at gmail.com> writes: > On Tue, Jan 15, 2013 at 2:43 AM, <greened at obbligato.org> wrote: >> The document here explains pretty well how to add a buildslave to the >> buildbot: >> >> http://llvm.org/docs/HowToAddABuilder.html >> >> However, it's not clear to me how to add a new build config. I would >> like
2013 Jan 15
2
[LLVMdev] Adding a Buildbot Config
...>>>> one of the .py files in zorg? >>> >>> Can you get the desired effect with --with-extra-options=? >> >> Probably, but where do I put that? > > It is a configure argument that specifies extra options to compile > with. For buildbots, it is the extra_configure_args parameter for > getClangBuildFactory (look at examples in builders.py). Right, I get that. Actually I would probably use --enable-werror. Should I create a patch for builders.py to add a new config? Is there a way to map a config so that it only even builds on a certain buildslave? I don...
2011 Nov 19
1
[LLVMdev] [llvm-commits] [zorg] r144978 - /zorg/trunk/buildbot/osuosl/master/config/builders.py
...2011 @@ -200,14 +200,14 @@ 'slavenames':["kistanova6"], 'builddir':"clang-native-arm-cortex-a9", 'factory' : ClangBuilder.getClangBuildFactory( + stage1_config='Release+Asserts', extra_configure_args=['--build=armv7l-unknown-linux-gnueabi', '--host=armv7l-unknown-linux-gnueabi', '--target=armv7l-unknown-linux-gnueabi', '--with-cpu=cortex-a9...
2013 Jan 15
0
[LLVMdev] Adding a Buildbot Config
....py files in zorg? >>>> >>>> Can you get the desired effect with --with-extra-options=? >>> >>> Probably, but where do I put that? >> >> It is a configure argument that specifies extra options to compile >> with. For buildbots, it is the extra_configure_args parameter for >> getClangBuildFactory (look at examples in builders.py). > > Right, I get that. Actually I would probably use --enable-werror. > > Should I create a patch for builders.py to add a new config? Yes. Send it to llvm-commits and CC Galina Kistanova. > Is there a...
2013 Jan 15
1
[LLVMdev] Adding a Buildbot Config
Dmitri Gribenko <gribozavr at gmail.com> writes: >> Right, I get that. Actually I would probably use --enable-werror. >> >> Should I create a patch for builders.py to add a new config? > > Yes. Send it to llvm-commits and CC Galina Kistanova. Ok, cool. Thanks! >> Is there a way to map a config so that it only even builds on a certain >> buildslave?
2013 Apr 15
0
[LLVMdev] Self-host buildbot
...t;, 'factory' : ClangBuilder.getClangBuildFactory( stage1_config='Release+Asserts', stage2_config='Release+Asserts', useTwoStage=True, clean=False, test=False, extra_configure_args=['--build=armv7l-unknown-linux-gnueabihf', '--host=armv7l-unknown-linux-gnueabihf', '--target=armv7l-unknown-linux-gnueabihf', '--with-cpu=cortex-a9', '--with-fpu=neon',...