search for: newlld

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

2016 Mar 21
2
Need help with code generation
...right can be quite > difficult. > > Rafael, This would be a good usecase for LLD as a library. I heard that > this is is an explicit non-goal, which really surprised me. Is that indeed > the case? > You can use LLD as a library. https://github.com/llvm-mirror/lld/blob/master/docs/NewLLD.rst#the-elf-linker-as-a-library > Cheers, > > James > > On Sat, 19 Mar 2016 at 13:32 Lorenzo Laneve via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> I'd like to make my compiler independent, just like Clang. Doesn't Clang >> call llc and then...
2016 Mar 21
3
Need help with code generation
...ould be a good usecase for LLD as a library. I heard that >>> this is is an explicit non-goal, which really surprised me. Is that indeed >>> the case? >>> >> >> You can use LLD as a library. >> >> https://github.com/llvm-mirror/lld/blob/master/docs/NewLLD.rst#the-elf-linker-as-a-library >> >> >>> Cheers, >>> >>> James >>> >>> On Sat, 19 Mar 2016 at 13:32 Lorenzo Laneve via llvm-dev < >>> llvm-dev at lists.llvm.org> wrote: >>> >>>> I'd like to make my com...
2016 Mar 19
3
Need help with code generation
I'd like to make my compiler independent, just like Clang. Doesn't Clang call llc and then system's ld by itself? I don't want my compiler to depend by any other program. I guess there will be a class in the llvm library that generates the object files based on the system's triple and data layout, and then call the system's ld? > On Mar 19, 2016, at 11:48 AM, Bruce