-
Notifications
You must be signed in to change notification settings - Fork 114
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
1 parent
ea38850
commit 641af3f
Showing
21 changed files
with
97 additions
and
105 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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
dev | ||
--- | ||
|
||
* Port build to dune from jbuilder (@avsm) | ||
|
||
2.2.0 (2018-07-15) | ||
------------------ | ||
|
||
|
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
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,12 @@ | ||
(install | ||
(section share) | ||
(files utoprc-dark utoprc-light)) | ||
|
||
(install | ||
(section share_root) | ||
(files | ||
(src/top/utop.el as emacs/site-lisp/utop.el))) | ||
|
||
(alias | ||
(name examples) | ||
(deps examples/custom-utop/myutop.bc examples/interact/test_program.bc)) |
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,8 @@ | ||
(lang dune 1.0) | ||
;; This file is used by `make all-supported-ocaml-versions` | ||
(context (opam (switch 4.02.3))) | ||
(context (opam (switch 4.03.0))) | ||
(context (opam (switch 4.04.2))) | ||
(context (opam (switch 4.05.0))) | ||
(context (opam (switch 4.06.1))) | ||
(context (opam (switch 4.07.0))) |
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,3 +1,3 @@ | ||
To build the custom toplevel in this directory, run: | ||
|
||
$ jbuilder myutop.bc | ||
$ dune build myutop.bc |
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,5 @@ | ||
(executable | ||
(name myutop) | ||
(flags :standard -safe-string) | ||
(link_flags -linkall) | ||
(libraries utop)) |
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,5 @@ | ||
(executable | ||
(name test_program) | ||
(flags :standard -safe-string) | ||
(link_flags -linkall) | ||
(libraries utop)) |
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,3 @@ | ||
(install | ||
(section man) | ||
(files utop.1 utop-full.1 utoprc.5)) |
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,12 @@ | ||
(library | ||
(name uTop) | ||
(public_name utop) | ||
(wrapped false) | ||
(flags :standard -safe-string) | ||
(modes byte) | ||
(libraries compiler-libs.toplevel findlib.top lambda-term threads) | ||
(preprocess | ||
(action | ||
(run %{bin:cppo} -V OCAML:%{ocaml_version} %{input-file})))) | ||
|
||
(ocamllex uTop_lexer) |
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,20 @@ | ||
(executables | ||
(names utop) | ||
(libraries utop) | ||
(flags :standard -safe-string) | ||
(link_flags -linkall)) | ||
|
||
(rule | ||
(targets utop-expunged.bc) | ||
(deps utop.bc) | ||
(action | ||
(run %{exe:expunge/expunge.exe} %{bin:ocamlobjinfo} %{ocaml_where} %{deps} | ||
%{targets} %{lib:compiler-libs.common:ocamlcommon.cma} | ||
%{lib:compiler-libs.bytecomp:ocamlbytecomp.cma} | ||
%{lib:compiler-libs.toplevel:ocamltoplevel.cma}))) | ||
|
||
(install | ||
(section bin) | ||
(files | ||
(utop-expunged.bc as utop) | ||
(utop.bc as utop-full))) |
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 @@ | ||
(executable | ||
(name expunge) | ||
(flags :standard -safe-string) | ||
(libraries unix)) |
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