Displaying 4 results from an estimated 4 matches for "l846".
Did you mean:
846
2014 Feb 27
2
[LLVMdev] compiler-rt CMake build
...build/tree && make check-all" there.
>
> Right. The ExternalProject module has a special case for the
> Makefile generators to make with $(MAKE) instead of "make":
>
>
> http://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/ExternalProject.cmake;hb=v2.8.12.2#l846
>
> so that flags like -j propagate automatically. You could do
> that too:
>
> if(CMAKE_GENERATOR MATCHES "Make")
> set(check_compiler_rt "$(MAKE)" "check-all")
> else()
> set(check_compiler_rt ${CMAKE_COMMAND} --build .
>...
2014 Feb 26
2
[LLVMdev] compiler-rt CMake build
Hi Brad,
Thanks for investigating this. Do you think it makes sense to land my
ExternalProject_Add patch
so that others can experiment with it? I can add quit with a
fatal_error/warning if the build tree rules
are generated with Ninja. However, there is a problem with Unix Makefiles
as well: parallelism doesn't
work when I run "make check-compiler-rt -j8" in the original build tree,
2014 Mar 21
2
[LLVMdev] compiler-rt CMake build
...>
> >> Right. The ExternalProject module has a special case for the
> >> Makefile generators to make with $(MAKE) instead of "make":
> >>
> >>
> >>
> http://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/ExternalProject.cmake;hb=v2.8.12.2#l846
> >>
> >> so that flags like -j propagate automatically. You could do
> >> that too:
> >>
> >> if(CMAKE_GENERATOR MATCHES "Make")
> >> set(check_compiler_rt "$(MAKE)" "check-all")
> >> else()
>...
2014 Mar 23
2
[LLVMdev] compiler-rt CMake build
...special case for the
> >> >> Makefile generators to make with $(MAKE) instead of "make":
> >> >>
> >> >>
> >> >>
> >> >>
> http://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/ExternalProject.cmake;hb=v2.8.12.2#l846
> >> >>
> >> >> so that flags like -j propagate automatically. You could do
> >> >> that too:
> >> >>
> >> >> if(CMAKE_GENERATOR MATCHES "Make")
> >> >> set(check_compiler_rt "$(MAKE)&quo...