search for: cb06450

Displaying 3 results from an estimated 3 matches for "cb06450".

2015 Oct 08
4
Cmake-gen'd parallel make breaks on native tablegen
Alright, this version works for me. Anything else that needs to be done? -Alex > On Oct 7, 2015, at 8:15 PM, Alex Wang <aw1621107 at gmail.com> wrote: > > diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake > index 452a728..cb06450 100644 > --- a/cmake/modules/TableGen.cmake > +++ b/cmake/modules/TableGen.cmake > @@ -70,6 +70,15 @@ function(add_public_tablegen_target target) > set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${target} PARENT_SCOPE) > endfunction() > > +if(LLVM_USE_HOST_TOOLS) > + add...
2015 Oct 20
2
Cmake-gen'd parallel make breaks on native tablegen
...>> Anything else that needs to be done? >> >> -Alex >> >>> On Oct 7, 2015, at 8:15 PM, Alex Wang <aw1621107 at gmail.com> wrote: >>> >>> diff --git a/cmake/modules/TableGen.cmake b/cmake/modules/TableGen.cmake >>> index 452a728..cb06450 100644 >>> --- a/cmake/modules/TableGen.cmake >>> +++ b/cmake/modules/TableGen.cmake >>> @@ -70,6 +70,15 @@ function(add_public_tablegen_target target) >>> set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${target} PARENT_SCOPE) >>> endfunction() >>&...
2015 Oct 07
2
Cmake-gen'd parallel make breaks on native tablegen
It should probably be inside an `if(LLVM_USE_HOST_TOOLS)` block. That way the extra target and command won’t get added unless needed and CMake won’t spew dev warnings. Adding a target with a nonexistent dependency makes CMake dump a bunch of developer warnings. Other than that this looks good. Does it resolve the issue for you? -Chris > On Oct 7, 2015, at 4:09 PM, Alex Wang <aw1621107 at