Displaying 4 results from an estimated 4 matches for "lldpasses".
2014 Aug 23
3
[LLVMdev] [3.5 Release] Release Candidate 3 Now Available - CMake build error
...rapPython.cpp"
[ 1501s] of target "liblldb" does not exist.
[ 1501s] This warning is for project developers. Use -Wno-dev to suppress it.
[ 1501s]
[ 1501s] CMake Error: The inter-target dependency graph contains the following strongly connected component (cycle):
[ 1501s] "lldPasses" of type SHARED_LIBRARY
[ 1501s] depends on "lldNative" (weak)
[ 1501s] depends on "lldYAML" (weak)
[ 1501s] "lldNative" of type SHARED_LIBRARY
[ 1501s] depends on "lldYAML" (weak)
[ 1501s] depends on "lldPasses" (weak)
[ 1501...
2014 Jun 30
2
[LLVMdev] LLD dynamic compilation
...000004169a7
When trying to investigate, I then ran CMake on my debug build (that
has dynamic linking to avoid re-linking of huge libraries during
development cycle), and I got this:
CMake Error: The inter-target dependency graph contains the following
strongly connected component (cycle):
"lldPasses" of type SHARED_LIBRARY
depends on "lldNative" (weak)
depends on "lldYAML" (weak)
"lldNative" of type SHARED_LIBRARY
depends on "lldYAML" (weak)
depends on "lldPasses" (weak)
"lldYAML" of type SHARED_LIBRARY
de...
2015 Jan 21
2
[LLVMdev] Can we establish layering for the LLD libraries? Current state is a bit of a mess...
...e CMake build system today. You can see it with
>> CMakeLists.txt. Also you can look at Greg's patch for some of the issues
>> here.
>>
>
> It seems the dependency to lldYAML can be removed from CMakeList.txt now.
> Core doesn't actually depends on YAML.
>
> lldPasses depends on libNative, and that dependency is currently resolved
> through lldCore transitively. We should be able to remove the dependency to
> libNative from Core by fixing Pass's CMake file.
>
Cool, this makes lots of sense to me as well. We can probably fix these
minor issues quick...
2015 Jan 21
2
[LLVMdev] Can we establish layering for the LLD libraries? Current state is a bit of a mess...
On Tue, Jan 20, 2015 at 5:35 PM, Nick Kledzik <kledzik at apple.com> wrote:
> On Jan 19, 2015, at 6:33 PM, Chandler Carruth <chandlerc at google.com>
> wrote:
>
> > I wanted to go through and map out the layering of LLD's libraries today
> and found that it's essentially impossible. I think some serious cleanup is
> needed here.
> >
> >