Displaying 3 results from an estimated 3 matches for "cpowf".
Did you mean:
powf
2016 Dec 19
0
libcompiler_rt.so and libcompiler_rt.a are not being built
...his 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): undefined symbol '__mulxc3'
> (function csqrt): undefined symbol '__muldc3'
>
> I'm pretty sure this problem is solved by just adding -lcompiler_rt to LDFLAGS.
Did that work?
If not, try building the...
2016 Dec 18
3
libcompiler_rt.so and libcompiler_rt.a are not being built
...>
>> Regards,
>> Dmitry
I'm sure that this library can and should exist. 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): undefined symbol '__mulxc3'
(function csqrt): undefined symbol '__muldc3'
I'm pretty sure this problem is solved by just adding -lcompiler_rt to LDFLAGS.
Regards,
Dmitry
2016 Dec 16
0
libcompiler_rt.so and libcompiler_rt.a are not being built
> 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 the latest versions cloned from GitHub mirror, branch `master`.
>
> I'm