Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 847 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 847 Bytes

ClangCompiler

CI TagBot codecov

Installation

pkg> add https://github.com/Gnimuc/ClangCompiler.jl.git

Examples

Decl Lookup

import ClangCompiler as CC

I = CC.create_interpreter(["-include", "vector"])

decl_lookup = CC.DeclFinder(I)

@assert decl_lookup(I, "std::vector")

decl = CC.get_decl(decl_lookup)
CC.dump(decl)

CC.dispose(decl_lookup)
CC.dispose(I)