-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now require llvm>=3.6 * Bugfix for fold_succ_e * Restore compat with ocamlgraph 1.8.6 * Add Llvm's uses as label on edges.
- Loading branch information
Showing
11 changed files
with
7,790 additions
and
138 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 099231b7a3ef48b26af7ff7d309b962b) | ||
# Ignore VCS directories, you can use the same kind of rule outside | ||
# OASIS_START/STOP if you want to exclude directories that contains | ||
# useless stuff for the build process | ||
true: annot, bin_annot | ||
<**/.svn>: -traverse | ||
<**/.svn>: not_hygienic | ||
".bzr": -traverse | ||
".bzr": not_hygienic | ||
".hg": -traverse | ||
".hg": not_hygienic | ||
".git": -traverse | ||
".git": not_hygienic | ||
"_darcs": -traverse | ||
"_darcs": not_hygienic | ||
# Library llvmgraph | ||
"src/llvmgraph.cmxs": use_llvmgraph | ||
<src/*.ml{,i,y}>: pkg_llvm | ||
<src/*.ml{,i,y}>: pkg_ocamlgraph | ||
# Executable colordot | ||
<test/colordot.{native,byte}>: pkg_llvm | ||
<test/colordot.{native,byte}>: pkg_llvm.bitreader | ||
<test/colordot.{native,byte}>: pkg_ocamlgraph | ||
<test/colordot.{native,byte}>: pkg_str | ||
<test/colordot.{native,byte}>: use_llvmgraph | ||
<test/*.ml{,i,y}>: pkg_llvm | ||
<test/*.ml{,i,y}>: pkg_llvm.bitreader | ||
<test/*.ml{,i,y}>: pkg_ocamlgraph | ||
<test/*.ml{,i,y}>: pkg_str | ||
<test/*.ml{,i,y}>: use_llvmgraph | ||
# OASIS_STOP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: ffca07d7cf392d78b641b66986f0721b) | ||
src/Llvmgraph | ||
# OASIS_STOP |
Oops, something went wrong.