From: Jim Grosbach
It is possible to cross-compile LLVM. That is, you can create LLVM - executables and libraries for a platform different than the one one which you - are compiling. To do this, a few additional steps are - required. 1 To cross-compile LLVM, use - these instructions:
-The result of such a build will produce executables that are not executable - on your build host (--build option) but can be executed on your compile host +
It is possible to cross-compile LLVM itself. That is, you can create LLVM + executables and libraries to be hosted on a platform different from the + platform where they are build (a Canadian Cross build). To configure a + cross-compile, supply the configure script with --build and + --host options that are different. The values of these options must + be legal target triples that your GCC compiler supports.
+ +The result of such a build is executables that are not runnable on + on the build host (--build option) but can be executed on the compile host (--host option).
-Notes:
-