search for: lcompiler_rt

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

Did you mean: compiler_rt
2016 Dec 19
0
libcompiler_rt.so and libcompiler_rt.a are not being built
...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 builtins for your platform, e.g: $ ninja libclang_rt.builtins_x86_64_osx.a best, vedant
2016 Dec 18
3
libcompiler_rt.so and libcompiler_rt.a are not being built
...g 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