Hello, Does anybody know whether the functionality of generating C code from LLVM IR is still available? As described in the document of getting started with VS, to compile IR to C you can use "llc -march=c hello.bc". But it no longer works. Thanks, Bengu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100129/efe83032/attachment.html>
Found it in 2.6 release note. It is no longer considered as release criteria and no more maintenance on this. Bengu On Fri, Jan 29, 2010 at 11:55 AM, Bengu Li <libengu at gmail.com> wrote:> Hello, > > Does anybody know whether the functionality of generating C code from LLVM > IR is still available? > As described in the document of getting started with VS, to compile IR to C > you can use "llc -march=c hello.bc". But it no longer works. > Thanks, > > Bengu >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100129/78df921a/attachment.html>
> Found it in 2.6 release note. It is no longer considered as release > criteria and no more maintenance on this.No more maintenance unless someone steps up to maintain it. If you are interested in using the C backend, you will need to do some work on it yourself. I'm sure people here would give you a hand if you tried. Ciao, Duncan.