Displaying 2 results from an estimated 2 matches for "curshlib".
2014 Apr 03
2
[LLVMdev] [lld] adding demangler for symbol resolution
...> May be for now, as an initial implementation, we can have a single demangle function that returns a std::string.
> Lets look at an example, lld currently has:
> llvm::errs() << "lld warning: shared library symbol "
> << curShLib->name()
> << " has different load path in " …
>
> My ideal change would be to something like:
>
> llvm::errs() << "lld warning: shared library symbol "
> << ctx.dema...
2014 Apr 02
5
[LLVMdev] [lld] adding demangler for symbol resolution
On 4/2/2014 12:23 PM, Nick Kledzik wrote:
> On Apr 1, 2014, at 9:19 PM, Shankar Easwaran wrote:
>
>> Hi Nick, Bigcheese,
>>
>> When lld is used to link C++ code, it would be required to demangle symbol names by default/user driven option.
>>
>> The Gnu linker has the following options :-
>>
>> --demangle=[style]
>> --no-demangle
>>