I'm trying to compile an LLVM Module object to ASM and have been using the llc.cpp file as a guide.  Currently I'm not getting any errors but I AM getting an empty assembly file.  The relevant source code can be found here: <a href="https://github.com/chriswailes/llvm-ecb/blob/master/src/core/target.cpp">https://github.com/chriswailes/llvm-ecb/blob/master/src/core/target.cpp</a><br>
<br>For a bit more context, this code exists in a shared library that provides additional C bindings for LLVM.  These C bindings are then used to make Ruby bindings, which can be found here: <a href="https://github.com/chriswailes/RLTK">https://github.com/chriswailes/RLTK</a>  An example file that uses this functionality is located here: <a href="https://gist.github.com/2962792">https://gist.github.com/2962792</a><br>
<br>Any help in figuring out why compilation is failing would be very helpful.<br><br>- Chris<br>