search for: cloudlibc

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

2015 Mar 29
2
[LLVMdev] How to Cross Compile libcompiler_rt Static Library?
2015-03-29 3:33 GMT-05:00 Ed Schouten <ed at 80386.nl>: > I am cross-compiling compiler-rt for my specific use-case. That said, > I'm cross-compiling from x86-64 to x86-64, but for a different ABI. > This is what I use: > > > https://github.com/NuxiNL/cloudlibc/wiki/Building-runtime-libraries#user-content-compiler-rt > > -DCMAKE_CROSSCOMPILING=True > > As you can see, I'm using CMake. Works pretty well so far. Hopefully > something like this will work for you as well? > I tried "cmake ../compiler-rt -DCMAKE_C_COMPILER=clang -DC...
2015 Mar 29
2
[LLVMdev] How to Cross Compile libcompiler_rt Static Library?
Hi, I've cross-compiled musl-libc to arm binaries with clang. It needs functions from static runtime library "libcompiler_rt.a". I tried to build compile_rt outside the llvm source tree. Using command like "make clang_linux", I can easily build "libcompiler_rt.a" for my host machine, which is X86_64. But how can I *cross-compile* the compiler_rt runtime
2015 Mar 29
2
[LLVMdev] How to Cross Compile libcompiler_rt Static Library?
...<ed at 80386.nl>: >> >>> I am cross-compiling compiler-rt for my specific use-case. That said, >>> I'm cross-compiling from x86-64 to x86-64, but for a different ABI. >>> This is what I use: >>> >>> >>> https://github.com/NuxiNL/cloudlibc/wiki/Building-runtime-libraries#user-content-compiler-rt >>> >>> -DCMAKE_CROSSCOMPILING=True >>> >>> As you can see, I'm using CMake. Works pretty well so far. Hopefully >>> something like this will work for you as well? >>> >> >&gt...