Displaying 3 results from an estimated 3 matches for "hard_pic".
2016 Dec 19
0
libcompiler_rt.so and libcompiler_rt.a are not being built
...; best,
>> vedant
>>
>>> Regards,
>>> Dmitry
>
> I'm sure that this library can and should exist.
I think we're talking about different things.
It looks like you just want the builtins: this exists.
E.g on Darwin, you can find muldc3 in libclang_rt.hard_pic.a.
> You can search it by it's name and it is mentioned a lot on the Internet. Now I've got a linking problem when building musl:
>
> (function cpow): undefined symbol '__muldc3'
> (function cpowf): undefined symbol '__mulsc3'
> (function cpowl): u...
2016 Dec 18
3
libcompiler_rt.so and libcompiler_rt.a are not being built
16.12.2016, 18:23, "Vedant Kumar" <vsk at apple.com>:
>> On Dec 16, 2016, at 7:06 AM, Dmitry Golovin via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> I want to build LLVM-based toolchain with Musl, I have LLVM sources with clang and lld (under `tools` directory) and libunwind, compiler-rt, libcxx and libcxxabi (under `projects` directory). All are
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...me/compiler-rt/Makefile
@@ -83,7 +83,7 @@ RuntimeLibrary.darwin.Configs := \
eprintf.a 10.4.a osx.a ios.a cc_kext.a cc_kext_ios5.a \
asan_osx_dynamic.dylib \
profile_osx.a profile_ios.a \
- ubsan_osx.a
+ ubsan_osx.a safestack_osx.a
RuntimeLibrary.macho_embedded.Configs := \
hard_static.a hard_pic.a
@@ -127,7 +127,7 @@ TryCompile = \
# We try to build 32-bit runtimes both on 32-bit hosts and 64-bit hosts.
Runtime32BitConfigs = \
builtins-i386.a profile-i386.a san-i386.a asan-i386.a asan_cxx-i386.a \
- ubsan-i386.a ubsan_cxx-i386.a
+ ubsan-i386.a ubsan_cxx-i386.a safestack-i386.a
# We...