forked from BinaryAnalysisPlatform/bap
-
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.
- Loading branch information
Showing
5 changed files
with
106 additions
and
28 deletions.
There are no files selected for viewing
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,35 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "master" | ||
synopsis: "BAP toplevel, baptop" | ||
description: | ||
"The utop-enhanced bap toplevel interpreter. Run `baptop` and start using bap right away. Or use it as the interpreter for your BAP scripts, e.g., `baptop myprog.ml`" | ||
maintainer: ["Ivan Gotovchits <[email protected]>"] | ||
authors: ["The BAP Team"] | ||
license: "MIT" | ||
tags: ["bap" "toplevel"] | ||
homepage: "https://github.com/BinaryAnalysisPlatform/bap" | ||
bug-reports: "https://github.com/BinaryAnalysisPlatform/bap/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"bap-base" {= version} | ||
"bap-std" {= version} | ||
"core_kernel" {>= "v0.14" & < "v0.16"} | ||
"ocamlfind" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/BinaryAnalysisPlatform/bap.git" |
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
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 |
---|---|---|
@@ -1,28 +1,44 @@ | ||
(library | ||
(name bap) | ||
(public_name bap-std) | ||
(wrapped false) | ||
(preprocess (pps ppx_bap)) | ||
(libraries | ||
bap-bundle | ||
bap-core-theory | ||
bap_disasm | ||
bap-future | ||
bap_image | ||
bap-knowledge | ||
bap-main | ||
bap_sema | ||
bap_types | ||
bitvec | ||
bitvec-binprot | ||
bitvec-order | ||
bitvec-sexp | ||
core_kernel | ||
core_kernel.caml_unix | ||
fileutils | ||
graphlib | ||
monads | ||
ogre | ||
regular) | ||
(modules bap bap_project bap_self) | ||
(private_modules bap_project bap_self)) | ||
(name bap) | ||
(public_name bap-std) | ||
(wrapped false) | ||
(preprocess (pps ppx_bap)) | ||
(libraries | ||
bap-bundle | ||
bap-core-theory | ||
bap_disasm | ||
bap-future | ||
bap_image | ||
bap-knowledge | ||
bap-main | ||
bap_sema | ||
bap_types | ||
bitvec | ||
bitvec-binprot | ||
bitvec-order | ||
bitvec-sexp | ||
core_kernel | ||
core_kernel.caml_unix | ||
fileutils | ||
graphlib | ||
monads | ||
ogre | ||
regular) | ||
(modules bap bap_project bap_self) | ||
(private_modules bap_project bap_self)) | ||
|
||
|
||
(library | ||
(name baptop) | ||
(public_name bap.top) | ||
(modules bap_init_toplevel) | ||
(private_modules bap_init_toplevel) | ||
(library_flags (-linkall)) | ||
(modes byte) | ||
(special_builtin_support findlib_dynload) | ||
(libraries | ||
bap | ||
bap-main | ||
bap-plugins | ||
compiler-libs | ||
compiler-libs.common)) |
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
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