This contains the foundation for the new binding as well as early work on Module and Type.
8 lines
175 B
Python
8 lines
175 B
Python
from binding import *
|
|
from namespace import llvm
|
|
|
|
LLVMContext = llvm.Class()
|
|
LLVMContext.include.add("llvm/LLVMContext.h")
|
|
|
|
getGlobalContext = llvm.Function(LLVMContext.Ref)
|
|
|