This module allows you to use llvm from Python. You can use most modern llvm versions, selecting them during runtime. It uses py-cffi to generate ELF binaries during runtime. Submitted by: myself Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13724
7 lines
373 B
Text
7 lines
373 B
Text
The main goal of llvmcpy is to provide Python bindings for the LLVM project
|
|
that are fast and require the lowest possible maintainance effort. To achive
|
|
this, we use CFFI to parse the (slightly adapted) header files for the LLVM-C
|
|
API and automatically generate a set of classes and functions to interact with
|
|
them in a Pythonic way.
|
|
|
|
WWW: https://github.com/revng/llvmcpy
|