rllvm 0.1.6

A tool to build whole-program LLVM bitcode files
Documentation
1
2
3
4
5
6
7
use rllvm::{compiler_wrapper::CompilerKind, error::Error};

pub mod rllvm_cc;

pub fn main() -> Result<(), Error> {
    rllvm_cc::rllvm_main("rllvm++", CompilerKind::ClangXX)
}