Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chanwit/jit
A libjit wrapper for Golang
https://github.com/chanwit/jit
Last synced: 18 days ago
JSON representation
A libjit wrapper for Golang
- Host: GitHub
- URL: https://github.com/chanwit/jit
- Owner: chanwit
- License: lgpl-2.1
- Created: 2013-10-05T15:07:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-15T17:43:12.000Z (over 10 years ago)
- Last Synced: 2024-10-11T00:31:18.880Z (about 1 month ago)
- Language: C
- Size: 2.66 MB
- Stars: 24
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
JIT [![Build Status](https://drone.io/github.com/chanwit/jit/status.png)](https://drone.io/github.com/chanwit/jit/latest)
---------A `libjit` wrapper for Golang.
(c) 2013 Chanwit Kaewkasi
Suranaree University of Technology, Thailand
This software is licensed under LGPL.
How to install
--------------You need to install `libjit` firstly. Please note that it requires `automake 1.11.6` or later to build `libjit`. So, check your version of `automake` before proceed.
git clone git://git.savannah.gnu.org/libjit.git
cd libjit
./auto_gen.sh
./configure --prefix=/usr
make
sudo make installThen, install the library by: `go get github.com/chanwit/jit`.
There are some examples under `jit/examples`. You can try running `go run t1.go` and see the result.
Enjoy jitting.