Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update LLVM version #43

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@
## Requirements

* Ruby 1.9
* Clang 3.5 or later ([Download](http://llvm.org/releases/download.html#3.5) the binaries or
build from source configured with ``--enable-shared``)
* Clang 15 (download the binaries [here](http://llvm.org/releases/download.html) or use the install script [here](https://apt.llvm.org) or build from source configured with ``--enable-shared``)

*These requirements are only for running the generator. The generated files are Ruby 1.8 compatible and do not need Clang.*

You can follow the [quickstart](quickstart.md) guide to install everything in a docker container and try out this gem.


## Example

Expand Down
2 changes: 1 addition & 1 deletion ffi_gen.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY

s.name = "ffi_gen"
s.version = "1.2.0"
s.version = "1.3.0"
s.summary = "A generator for Ruby FFI bindings"
s.description = "A generator for Ruby FFI bindings, directly from header files via LLVM's Clang compiler"
s.author = "Richard Musiol"
Expand Down
Loading