Expand description
A crate wrapping tcc in Rust.
Structs§
- CSymbol
- A C symbol returned by
TccRelocated::get_symbol()
. - Relocated
Tcc - Once
Tcc::relocate()
is done successfully, this struct is returned to let you fetch the symbols from the generated machine code. - Tcc
- Main struct of this crate, can be used to compile C code into machine code.
Enums§
- Output
Type - Output type of the compilation.
Traits§
- Symbol
- Symbol trait, implemented by either a
CSymbol
returned byTccRelocated::get_symbol()
, or by any*const c_void
(for instance anextern "C"
function).