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

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

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