[llvm-dev] Linking two LLVM IR files with native functions

Tim Northover via llvm-dev llvm-dev at lists.llvm.org
Thu Mar 17 07:49:35 PDT 2016


On 16 March 2016 at 22:04, Shilpa B via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> Now, these two .ll files can be linked together by generating .bc files. But
> I could generate .bc file only for the C++ .ll file but not for Matlab .ll
> as it says the function definition could not be found...

That's very weird, it looks more like a linker error than an llvm-as
error. What are you running to try and convert the Matlab .ll file to
a .bc.

> So how could I link these two .ll files.

Clang should be able to accept .ll files directly (as should
llvm-link, I think): "clang cpp_impl.ll matlab.ll -omatlab".

Cheers.

Tim.


More information about the llvm-dev mailing list