-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract most library extensions to std dune library
- Loading branch information
Showing
17 changed files
with
54 additions
and
23 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
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,17 @@ | ||
(include_subdirs no) | ||
|
||
(library | ||
(name goblint_std) | ||
(public_name goblint.std) | ||
(libraries | ||
batteries | ||
zarith | ||
goblint-cil | ||
fpath | ||
yojson | ||
yaml) | ||
(preprocess | ||
(pps | ||
ppx_deriving.std | ||
ppx_deriving_hash | ||
ppx_deriving_yojson))) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,24 @@ | ||
(** OCaml library extensions which are completely independent of Goblint. *) | ||
|
||
(** {1 Standard library} | ||
OCaml standard library extensions which are not provided by {!Batteries}. *) | ||
|
||
module GobGc = GobGc | ||
module GobHashtbl = GobHashtbl | ||
module GobList = GobList | ||
module GobRef = GobRef | ||
module GobResult = GobResult | ||
module GobOption = GobOption | ||
module GobSys = GobSys | ||
module GobUnix = GobUnix | ||
|
||
(** {1 Other libraries} | ||
External library extensions. *) | ||
|
||
module GobFpath = GobFpath | ||
module GobPretty = GobPretty | ||
module GobYaml = GobYaml | ||
module GobYojson = GobYojson | ||
module GobZ = GobZ |