search for: wanglei

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

2016 May 03
2
Problem on cross-compiling compiler-rt
...ich architecture you want to build the compiler-rt archives and libraries for Hopefully in the near future we’ll have a better story for building this functionality. Hope this helps, -Chris > On May 3, 2016, at 12:09 AM, 李阳 via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hi WangLei, > > Do you mean that the version 3.9 is LLVM project 3.9 and 3.5 is CMake 3.5? > > In the guide[GetStarted.rst], the tutorial says before running CMake command, you must checkout all the source code. CMake does not pickup newly added source directories in incremental builds. > &...
2016 May 05
2
Problem on cross-compiling compiler-rt
...to the user. We will also be working on ways of specifying lists of targets to the LLVM/Clang build so that you won’t need to set COMPILER_RT_DEFAULT_TARGET_ARCH, and so that you can easily build for multiple targets while you build clang. Thanks, -Chris > On May 3, 2016, at 7:24 PM, 王磊 <wanglei at ia.ac.cn> wrote: > > I finally solved my problem. Chris's suggestion helps much, but there are still a few problems to build cross platform compiler-rt. > -DLLVM_BUILD_EXTERNAL_COMPILER_RT=On -> This is valid and required to force compiler-rt to be built by the just-built cla...
2016 May 03
2
Problem on cross-compiling compiler-rt
Hi. I'm trying to use Clang/LLVM as a cross-compiling toolchain. In previous version of LLVM with the old configure/Makefile building system, I'm able to build Clang/LLVM for target architecture with the host GCC firstly and then use the generated cross compiler to compile the compiler-rt project, and, consequently, I can get a cross compiler as well as the compiler-rt library. However,