Generate Mojo FFI bindings from C headers using libclang
Project description
mojo-bindgen
[!WARNING] Alpha stage: this project is under heavy development and may change quickly.
C headers -> Mojo FFI. mojo-bindgen parses real C with
libclang, and emits Mojo bindings for external_call or
owned_dl_handle workflows. this mirrors the spirit of rust-bindgen which follows the same approch for Rust
The goal is simple: make binding generation easy and faithful as possible to the actual C surface, and fail conservatively when a declaration cannot be modeled correctly.
Requirements
- Python 3.14+
- a system
libclangcompatible with thelibclangPython wheel - a Mojo (nightly) toolchain if you want to build or run the generated bindings
Installation
System dependencies
Install Clang and the shared libclang library first:
# Ubuntu / Debian
sudo apt update && sudo apt install -y clang libclang1
# Fedora
sudo dnf install -y clang llvm-libs
# macOS (Homebrew)
brew install llvm
If the shared library is not on the default loader path, set LIBCLANG_PATH
to the directory containing libclang.so or libclang.dylib.
Install from PyPI
pip install mojo-bindgen
PyPI package: mojo-bindgen
Install from source
git clone https://github.com/MoSafi2/mojo_bindgen
cd mojo_bindgen
pip install -e .
For development setup, checks, and Pixi workflows, see CONTRIBUTING.md.
Quick start
Generate bindings from a primary header:
mojo-bindgen path/to/header.h -o bindings.mojo --link-mode external-call
Pass common Clang inputs with structured flags:
mojo-bindgen include/mylib.h \
-I ./include \
-D MYLIB_FEATURE=1 \
--std c11 \
-o mylib_bindings.mojo
Add sibling public headers with repeated --public-header. The primary header
and public headers are included in an internal umbrella header. Transitive
#include files are parsed by Clang and can still contribute declarations
because source-file filtering is not applied yet:
mojo-bindgen include/mylib.h \
--public-header include/mylib_extra.h \
-I ./include \
-o mylib_bindings.mojo
By default the parser uses -std=gnu11 when no C standard is provided. Pin a
standard explicitly if your header requires one:
mojo-bindgen include/mylib.h --std c99 -o mylib_bindings.mojo
Use --clang-arg for raw Clang flags that do not have a structured option:
mojo-bindgen include/mylib.h --clang-arg=-fms-extensions -o mylib_bindings.mojo
Linking modes
mojo-bindgen supports two output styles:
external_callDirect FFI wrappers. Use this when the target library is linked at Mojo build time.owned_dl_handleDynamic runtime symbol lookup viaOwnedDLHandlefor loading a shared library (.so,.dylib).
Examples:
# default
mojo-bindgen include/mylib.h --link-mode external-call -o mylib_bindings.mojo
# runtime-loaded shared library
mojo-bindgen include/mylib.h \
--link-mode owned-dl-handle \
--library-path /usr/lib/libmylib.so \
-o mylib_bindings_dl.mojo
What works today?
mojo-bindgen is still alpha and evolves quickly, but it already supports a
useful slice of real C headers and is practical today as a starting point for
generating bindings.
Current support includes:
- Parsing and mapping: real C parsing through
libclang, repeatable--clang-argsupport, and a structured IR pipeline rather than text-only generation. - Primitive types: scalar types, typedef chains, pointers with const-aware mutability, fixed arrays, incomplete-array decay cases, complex values, vector extension types, and representable atomics.
- Mojo-native numeric mapping: vector types map to
SIMD[...], complex values map toComplexSIMD[...], and representable atomics map toAtomic[...]. - Records: structs, anonymous members, mixed layouts that combine plain fields and bitfields, synthesized padding, and custom alignment emission where Mojo can represent the layout faithfully.
- Bitfields: bitfields are emitted through explicit storage fields plus synthesized getter and setter methods.
- Unions: eligible unions map to
UnsafeUnion[...]; unions that cannot be represented safely fall back to opaqueInlineArray[...]storage with diagnostics to preserve layout. - Opaque and difficult layouts: incomplete records, packed layouts, and alignment-sensitive record storages are preserved conservatively as opaque byte storage when a faithful typed layout is not possible.
- Callbacks and function pointers: callback typedefs, function-pointer
fields, and function-pointer parameters and returns are preserved in Mojo via
emitted
comptimecallback declarations and synthesized aliases when needed. - Functions: thin wrappers are generated for non-variadic functions under
both
external_callandowned_dl_handlelink modes. - Globals and constants: because Mojo does not currently expose native C
globals directly, supported globals map through generated
GlobalVar/GlobalConsthelper structs with synthesizedload()/store()methods; constants and supported object-like macros map tocomptimedeclarations. - Macros: integer, float, string, and char literal macros, foldable macro
chains, supported casts, and
sizeof(type)expressions are emitted as Mojo code. - Debug IR output: the CLI has hidden maintainer flags for serialized parser and Mojo IR sidecars.
Current limitations
Known gaps you may still hit in generated code. For ABI-sensitive surfaces, verify emitted layouts and symbols against your target toolchain.
- Macros: function-like macros, predefined macros, and more complex preprocessor behavior are preserved but usually emitted as comments for end-user review.
- Variadics: variadic C functions are not wrapped as callable thin-FFI bindings yet and are emitted as comment stubs.
- Non-prototype / K&R-style functions: older C declaration styles are only partially modeled and should be treated with caution.
- Records with hostile layouts: some packed, ABI-sensitive, or otherwise difficult record layouts cannot be emitted as fully typed Mojo structs and fall back to opaque storage; layout-sensitive declarations may still require manual verification.
- Anonymous members: anonymous struct and union members are preserved structurally, but they are not automatically promoted into a flattened parent record surface.
- Atomics: atomic support is conservative. Representable atomic fields and pointer-based usage work, but atomic globals are still emitted as stubs and some surfaces require manual handling.
- Linkage and compiler edge cases:
inline, compiler-specific linkage hints, and other extension-heavy cases can still require manual review and may lead to symbol mismatches at runtime. - Public-header model: the primary header and any
--public-headervalues are included in an internal umbrella header. Transitive#includefiles are also visible to Clang and may contribute declarations because source-file filtering is not applied yet.
Real-world examples
The repository includes worked examples and smoke programs for:
- SQLite: examples/sqlite
- Cairo: examples/cairo
- libpng: examples/libpng
- zlib: examples/zlib
- globals/constants: examples/global_consts
These examples do more than generate bindings: their generate.sh scripts also
build smoke artifacts or run small functional tests to check the usability of
the generated bindings. They pass --layout-tests explicitly when they need
layout-test sidecars.
The test suite also has end-to-end runtime coverage for:
- by-value records and enums
- callbacks and function-pointer returns
- globals and constants
- vectors and complex values
- atomic pointer-based APIs
- opaque forward declarations
- pointer-to-array and array-decay cases
- both
external_callandowned_dl_handlelink modes
See tests/e2e/README.md for the current runtime case matrix.
Troubleshooting
The generated module is empty or missing declarations
mojo-bindgen parses the primary header plus any headers listed with
--public-header through an internal umbrella header. If a thin wrapper only
includes another header whose declarations you care about, pass that included
header with --public-header or use it as the primary header directly. Normal
transitive #include files are also visible to Clang and may appear in output.
Parsing fails on project headers
Most parser failures are missing include paths, target flags, or defines. Add
the same flags your C build uses with -I / --include, -D / --define,
-U / --undefine, --target, --sysroot, --std, or repeated
--clang-arg.
Debugging parser failures
Print the normalized Clang arguments that mojo-bindgen will use:
mojo-bindgen include/mylib.h -I ./include --print-clang-args
Write diagnostics as JSON while still generating normal output:
mojo-bindgen include/mylib.h \
--diagnostics json \
--diagnostics-output diagnostics.json \
-o mylib_bindings.mojo
Dump the preprocessed input that Clang sees:
mojo-bindgen include/mylib.h \
-I ./include \
--dump-preprocessed mylib.preprocessed.c \
-o mylib_bindings.mojo
Build succeeds but symbols are missing at runtime
Double-check:
--libraryand--link-name- your Mojo link flags for
external_call - your
--library-pathforowned_dl_handle - whether the original C declaration involved tricky
inlineor exotic layout that needs manual review.
License
Licensed under the MIT License. See LICENSE.
Contributing: CONTRIBUTING.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mojo_bindgen-0.3.3.tar.gz.
File metadata
- Download URL: mojo_bindgen-0.3.3.tar.gz
- Upload date:
- Size: 96.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
445bd1b5dad1331140f4867f1b609d0711da155c60f29f56926e45f9bc32a037
|
|
| MD5 |
a821b37fa5b015e97c6352befce3e947
|
|
| BLAKE2b-256 |
e83c8e77fe26e39d668601fb4569fa1df7392d323b0d855590bb3ad3bfc4688d
|
Provenance
The following attestation bundles were made for mojo_bindgen-0.3.3.tar.gz:
Publisher:
release.yml on MoSafi2/mojo_bindgen
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mojo_bindgen-0.3.3.tar.gz -
Subject digest:
445bd1b5dad1331140f4867f1b609d0711da155c60f29f56926e45f9bc32a037 - Sigstore transparency entry: 1984142610
- Sigstore integration time:
-
Permalink:
MoSafi2/mojo_bindgen@2137fbea6056b130e099d3b80648c4a124803029 -
Branch / Tag:
refs/tags/v0.3.3_mojo_v1.0.0b2 - Owner: https://github.com/MoSafi2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2137fbea6056b130e099d3b80648c4a124803029 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mojo_bindgen-0.3.3-py3-none-any.whl.
File metadata
- Download URL: mojo_bindgen-0.3.3-py3-none-any.whl
- Upload date:
- Size: 121.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8859dab2580a6f279c55ea4da5d6f2e92a2cc7e03f77ce42baab57303a695adf
|
|
| MD5 |
bc0f60f251e99c6a13a3f3da09020846
|
|
| BLAKE2b-256 |
d0e5370ab58f548d1250c0d692e05bdcf0f32baf502c00428137632554ce6186
|
Provenance
The following attestation bundles were made for mojo_bindgen-0.3.3-py3-none-any.whl:
Publisher:
release.yml on MoSafi2/mojo_bindgen
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mojo_bindgen-0.3.3-py3-none-any.whl -
Subject digest:
8859dab2580a6f279c55ea4da5d6f2e92a2cc7e03f77ce42baab57303a695adf - Sigstore transparency entry: 1984142739
- Sigstore integration time:
-
Permalink:
MoSafi2/mojo_bindgen@2137fbea6056b130e099d3b80648c4a124803029 -
Branch / Tag:
refs/tags/v0.3.3_mojo_v1.0.0b2 - Owner: https://github.com/MoSafi2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2137fbea6056b130e099d3b80648c4a124803029 -
Trigger Event:
push
-
Statement type: