Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cedlemo/lua-clangc

A try to generate lua bindings for clang
https://github.com/cedlemo/lua-clangc

Last synced: 14 days ago
JSON representation

A try to generate lua bindings for clang

Awesome Lists containing this project

README

        

#ruby-clangc

lua bindings to the clang C interface

Just a hobby project for now.

# Build:

## Standard:

The autotools will detect automaticaly your lua version
and install the library in a path build on the prefix variable.

./autogen.sh --prefix=/usr
make
sudo make install

The library files will be isntalled in /usr/lib/lua/LUA_VERSION/clangc.

## Custom directory:

You can still use the *libdir* variable. If your current version of lua
is 5.3 for example:

./autogen.sh --libdir=/usr/lib/lua/5.3
make
sudo make install

# Clean:

sudo make uninstall
make maintainer clean