libgccjit

JIT compilation library for the GNU Compiler Collection

brewmacoslinux
Try with needOr install directly
Source

About

JIT library for the GNU compiler collection

Commands

libgccjit

Examples

Compile C code to machine code at runtime using JIT$ gcc -I$(libgccjit-config --includedir) -L$(libgccjit-config --libdir) -lgccjit program.c -o program
Link against libgccjit in a C program for runtime compilation$ cc -c mycode.c $(pkg-config --cflags libgccjit) -o mycode.o && cc mycode.o $(pkg-config --libs libgccjit) -o myapp
Check libgccjit version and configuration$ pkg-config --modversion libgccjit