Displaying 2 results from an estimated 2 matches for "abi_nonshar".
Did you mean:
abi_nonshared
2017 Jun 03
2
Providing __dso_handle in LLVM
...> It works because builtins are already built as a static library, but I'm
>> not sure whether it's correct from the layering point of view.
>>
>> 3. A cleanest solution from the layering perspective would be add another
>> archive library to libc++abi, e.g. libc++abi_nonshared.a, that will only
>> contain the definition of __dso_handle. The ABI linker script that's
>> generated by libc++ could then include this library into every link. This
>> work even on systems that already provide __dso_handle. The only aspect
>> that might be somewhat c...
2017 Jun 02
6
Providing __dso_handle in LLVM
...f8c6ba77090158373490ac010437603c8ff50).
It works because builtins are already built as a static library, but I'm
not sure whether it's correct from the layering point of view.
3. A cleanest solution from the layering perspective would be add another
archive library to libc++abi, e.g. libc++abi_nonshared.a, that will only
contain the definition of __dso_handle. The ABI linker script that's
generated by libc++ could then include this library into every link. This
work even on systems that already provide __dso_handle. The only aspect
that might be somewhat complicated is the case when the gene...