search for: 9c6e6d74

Displaying 2 results from an estimated 2 matches for "9c6e6d74".

2015 Jul 23
0
[LLVMdev] lli supports different targets than llc?
...uld both support the same targets... Why isn't that the > case? > > It's not a simulator, it pretty much only works on the host. -eric -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150723/9c6e6d74/attachment.html>
2015 Jul 23
2
[LLVMdev] lli supports different targets than llc?
Hi, Is it normal/expected for `llc` to support a different set of targets than `lli`? I have a hello.ll on which this works: $ llc -mtriple=armv7a-linux-gnueabihf hello.ll # OK, generates hello.s But this doesn't: $ lli -mtriple=armv7a-linux-gnueabihf hello.ll # lli: error creating EE: No available targets are compatible with this triple, see -version for the available targets. I'm