Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped maximum LLVM version to 3.6
Browse files Browse the repository at this point in the history
Yorick Peterse committed Mar 28, 2015
1 parent 368df60 commit 0fa85e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
@@ -597,8 +597,8 @@ class Configure
unless failed
parts = version.sub(/svn$/, "").split(".").map { |i| i.to_i }
api_version = ("%d%02d" % parts[0..1]).to_i
if api_version < 300 or api_version > 305
@log.write "only LLVM 3.0-3.5 is supported"
if api_version < 300 or api_version > 306
@log.write "only LLVM 3.0-3.6 is supported"
else
@log.write "found! (version #{version} - api: #{api_version})"
@llvm = :config

0 comments on commit 0fa85e6

Please sign in to comment.