search for: run_build

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

Did you mean: ra_build
2014 Sep 08
2
[LLVMdev] QEMU testing for LIT execution tests
...ross testing (i.e. run lit on BUILD, clang/llvm/whatever on HOST, and the tests themselves on TARGET, where {BUILD,HOST,TARGET} are all different machines). This use case is of particular interest to me. I suppose %run could be renamed %run_target, add %run_host, and then have an implied no-op %run_build on commands that don't have %run_target or %run_host. Perhaps someone might want to have BUILD be a different machine than where LIT runs, in which case %run_build would have to be explicit (but I'm not really interested in that use case). Cheers, Jon > > Thanks, > Greg >...
2023 Jan 18
1
Building samba 4.17.4 on CentOS7
...rguments', > > fragment=SNIP_EMPTY_PROGRAM, features=features) > > File "./buildtools/wafsamba/samba_utils.py", line 66, in fun > > return f(*k, **kw) > > File "./buildtools/wafsamba/samba_waf18.py", line 177, in check > > ret = self.run_build(*k, **kw) > > File > > "/root/rpmbuild/BUILD/samba-4.17.4/third_party/waf/waflib/Configure.py", > > line 317, in fun > > return f(*k, **kw) > > File > > "/root/rpmbuild/BUILD/samba-4.17.4/third_party/waf/waflib/Configure.py", > >...
2023 Jan 18
2
Building samba 4.17.4 on CentOS7
...link must be split from arguments', > fragment=SNIP_EMPTY_PROGRAM, features=features) > File "./buildtools/wafsamba/samba_utils.py", line 66, in fun > return f(*k, **kw) > File "./buildtools/wafsamba/samba_waf18.py", line 177, in check > ret = self.run_build(*k, **kw) > File > "/root/rpmbuild/BUILD/samba-4.17.4/third_party/waf/waflib/Configure.py", > line 317, in fun > return f(*k, **kw) > File > "/root/rpmbuild/BUILD/samba-4.17.4/third_party/waf/waflib/Configure.py", > line 552, in run_build > h...
2014 Sep 08
2
[LLVMdev] QEMU testing for LIT execution tests
...LD, clang/llvm/whatever on >> HOST, and the tests themselves on TARGET, where {BUILD,HOST,TARGET} are all >> different machines). This use case is of particular interest to me. I >> suppose %run could be renamed %run_target, add %run_host, and then have an >> implied no-op %run_build on commands that don't have %run_target or >> %run_host. Perhaps someone might want to have BUILD be a different machine >> than where LIT runs, in which case %run_build would have to be explicit (but >> I'm not really interested in that use case). >> >> >&g...
2023 Jun 06
5
Trying to build Samba from source on RHEL 8
...eatures='c force_gccdeps', cflags=flags, msg='Checking for c flags %r' % ''.join(flags)) File "./buildtools/wafsamba/samba_utils.py", line 66, in fun return f(*k, **kw) File "./buildtools/wafsamba/samba_waf18.py", line 177, in check ret = self.run_build(*k, **kw) File "/usr/local/src/Samba/samba-4.16.10/third_party/waf/waflib/Configure.py", line 317, in fun return f(*k, **kw) File "/usr/local/src/Samba/samba-4.16.10/third_party/waf/waflib/Configure.py", line 552, in run_build h = Utils.h_list(buf) File "/usr/...
2023 Jan 18
1
Building samba 4.17.4 on CentOS7
On 18/01/2023 15:16, Greg Dickie wrote: > Hey Rowland, > > ? Thanks for the reply. I was not aware of that page but that's super > helpful. Unfortunately it does not fix my problem. I think I'm missing > something basic. At this point I'm just trying to rebuild the centos7 > srpm. See the attached error message (configure? fails). > > The attachment
2023 Jun 07
1
Trying to build Samba from source on RHEL 8
..._gccdeps', cflags=flags, msg='Checking for c flags %r' % ''.join(flags)) > File "./buildtools/wafsamba/samba_utils.py", line 66, in fun > return f(*k, **kw) > File "./buildtools/wafsamba/samba_waf18.py", line 177, in check > ret = self.run_build(*k, **kw) > File "/usr/local/src/Samba/samba-4.16.10/third_party/waf/waflib/Configure.py", line 317, in fun > return f(*k, **kw) > File "/usr/local/src/Samba/samba-4.16.10/third_party/waf/waflib/Configure.py", line 552, in run_build > h = Utils.h_list(buf...
2014 Sep 08
2
[LLVMdev] QEMU testing for LIT execution tests
So I started prototyping remote testing for libcxx over the weekend: https://github.com/jroelofs/libcxx/tree/remote_test The SSHExecutor isn't quite finished yet, but this should give an idea of what I've got in mind. Does this look generic enough to work for other projects under the llvm-umbrella (LNT, test-suite, compiler_rt, libcxxabi, etc)? Are there use cases that you see
2023 Jun 06
1
Trying to build Samba from source on RHEL 8
...orce_gccdeps', cflags=flags, msg='Checking for c flags %r' % ''.join(flags)) > File "./buildtools/wafsamba/samba_utils.py", line 66, in fun > return f(*k, **kw) > File "./buildtools/wafsamba/samba_waf18.py", line 177, in check > ret = self.run_build(*k, **kw) > File "/usr/local/src/Samba/samba-4.16.10/third_party/waf/waflib/Configure.py", line 317, in fun > return f(*k, **kw) > File "/usr/local/src/Samba/samba-4.16.10/third_party/waf/waflib/Configure.py", line 552, in run_build > h = Utils.h_list(buf) &g...
2016 Jun 09
9
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
...be missing something > obvious. > > > ${ARG_CMAKE_ARGS} > > ${PASSTHROUGH_VARIABLES} > > INSTALL_COMMAND "" > > @@ -152,7 +165,7 @@ > > ExternalProject_Add_Step(${name} force-rebuild > > COMMAND ${run_build} > > COMMENT "Forcing rebuild of ${name}" > > - DEPENDEES configure clean > > + DEPENDEES configure ${always_clean} > > I'm not sure I understand what this does. If I had to guess I'd say that > when ALWAYS_CLEAN is passed the rebuild o...
2016 Jun 09
2
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
...t;> > ${ARG_CMAKE_ARGS} >>> > ${PASSTHROUGH_VARIABLES} >>> > INSTALL_COMMAND "" >>> > @@ -152,7 +165,7 @@ >>> > ExternalProject_Add_Step(${name} force-rebuild >>> > COMMAND ${run_build} >>> > COMMENT "Forcing rebuild of ${name}" >>> > - DEPENDEES configure clean >>> > + DEPENDEES configure ${always_clean} >>> >>> I'm not sure I understand what this does. If I had to guess I'd say that >&g...
2016 Jun 10
4
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
...ARGS} >>>>> > ${PASSTHROUGH_VARIABLES} >>>>> > INSTALL_COMMAND "" >>>>> > @@ -152,7 +165,7 @@ >>>>> > ExternalProject_Add_Step(${name} force-rebuild >>>>> > COMMAND ${run_build} >>>>> > COMMENT "Forcing rebuild of ${name}" >>>>> > - DEPENDEES configure clean >>>>> > + DEPENDEES configure ${always_clean} >>>>> >>>>> I'm not sure I understand what this does. I...