Lua bindings for clangc. Early stage https://github.com/cedlemo/lua-clangc.git

cedlemo 964a3110d0 Finish Index:create_translation_unit_from_source_file method 8 years ago
src 964a3110d0 Finish Index:create_translation_unit_from_source_file method 8 years ago
test 404eb4d40e Fix style issue 8 years ago
tools 4d82dc1ab2 Use argument for Clangparser:parser method 8 years ago
Makefile.am b6fd847c83 Set lua-clangc in a libdir 8 years ago
README.md 0c7be53fdc Update README.md 8 years ago
TODO 0304e8afed Update TODO 8 years ago
autogen.sh e7ae35c5ef Start creating build tools 9 years ago
compile.sh 888afdbd0d make script manage translationunitlib.c 9 years ago
configure.ac b6fd847c83 Set lua-clangc in a libdir 8 years ago
gpl-3.0.txt 1e220cb47e add License reference and license text 9 years ago
implementation.md 81cd8469af Add documentation on implementation 8 years ago

README.md

#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