Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cedlemo/lua-clangc
- Owner: cedlemo
- Created: 2015-05-08T09:44:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-26T17:25:09.000Z (almost 9 years ago)
- Last Synced: 2024-10-04T22:16:12.887Z (about 1 month ago)
- Language: Lua
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 installThe 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