Recently I've been looking into LLVM as a back-end for a compiler project, which looks very promising.
However, it seems that LLVM can JIT code (which is very cool!) or it can export assembly for the native platform, but it can't actually create native executables. This seems like a major limitation for the compiler back-end infrastructure that LLVM claims to be.
I'm working on a project where I'd like the compiled executables to be able to run without LLVM installed (i.e. no JIT). Does LLVM have any native assemblers that can be used to generate machine code (not LLVM bitcode)?
I've heard of the LLVM-MC project and it seems like it could be the answer -- is this ready for production use?