p5-Compiler-CodeGenerator-LLVM
p5-Compiler-CodeGenerator-LLVM copied to clipboard
Create LLVM IR for Perl5
As titled. I rewrote some code and copy code related with tokens from Compiler::Lexer.
I use CentOS5. I install new version g++ as g++44 to compile llvm. Tests is succeed if i change the following part in Makefile.PL. ``` makemaker_args->{CC} = 'g++44'; makemaker_args->{LD} =...
I compiled this code to `hello.ll` with Compiler::CodeGenerator::LLVM. ``` perl #!/usr/bin/env perl use strict; use warnings; print "Hello Perl on LLVM!\n"; ``` But output of `$ lli hello.ll` is: ```...