Skip to content

Commit a9c997a

Browse files
committed
[new release] goblint-cil (2.0.0)
CHANGES: * Wrap library into `GoblintCil` module (goblint/cil#107). * Remove all MSVC support (goblint/cil#52, goblint/cil#88). * Port entire build process from configure/make to dune (goblint/cil#104). * Add C11 `_Generic` support (goblint/cil#48). * Add C11 `_Noreturn` support (goblint/cil#58). * Add C11 `_Static_assert` support (goblint/cil#62). * Add C11 `_Alignof` support (goblint/cil#66). * Add C11 `_Alignas` support (goblint/cil#93, goblint/cil#108). * Add partial C11 `_Atomic` support (goblint/cil#61). * Add `_Float32`, `_Float64`, `_Float32x` and `_Float64x` type support (goblint/cil#8, goblint/cil#60). * Add Universal Character Names, `char16_t` and `char32_t` type support (goblint/cil#80). * Change locations to location spans and add additional expression locations (goblint/cil#51). * Add synthetic marking for CIL-inserted statement locations (goblint/cil#98). * Expose list of files from line control directives (goblint/cil#73). * Add parsed location transformation hook (goblint/cil#89). * Use Zarith for integer constants (goblint/cil#47, goblint/cil#53). * Fix constant folding overflows (goblint/cil#59). * Add option to disable constant branch removal (goblint/cil#103). * Add standalone expression parsing and checking (goblint/cil#97, goblint/cil#96). * Improve inline function merging (goblint/cil#72, goblint/cil#85, goblint/cil#84, goblint/cil#86). * Fix some attribute parsing cases (goblint/cil#71, goblint/cil#75, goblint/cil#76, goblint/cil#77). * Fix global NaN initializers (goblint/cil#78, goblint/cil#79). * Fix `cilly` binary installation (goblint/cil#99, goblint/cil#100, goblint/cil#102). * Remove batteries dependency to support OCaml 5 (goblint/cil#106).
1 parent 3927b22 commit a9c997a

File tree

1 file changed

+73
-0
lines changed
  • packages/goblint-cil/goblint-cil.2.0.0

1 file changed

+73
-0
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"A front-end for the C programming language that facilitates program analysis and transformation"
4+
description: """
5+
This is a fork of the 'cil' package used for 'goblint'. Major changes include:
6+
* Support for C99 and C11.
7+
* Compatibility with modern OCaml versions.
8+
* Use Zarith instead of Num and use that for integer constants.
9+
* Improved locations with columns and spans.
10+
* Removal of unmaintained extensions and MSVC support.
11+
* Use dune instead of make and ocamlbuild.
12+
* Many bug fixes."""
13+
maintainer: [
14+
"Michael Schwarz <[email protected]>"
15+
"Simmo Saan <[email protected]>"
16+
]
17+
authors: [
18+
"George Necula"
19+
"Scott McPeak"
20+
"Westley Weimer"
21+
"Gabriel Kerneis"
22+
"Ralf Vogler"
23+
"Michael Schwarz"
24+
"Simmo Saan"
25+
]
26+
license: "BSD-3-Clause"
27+
homepage: "https://github.com/goblint/cil"
28+
bug-reports: "https://github.com/goblint/cil/issues"
29+
depends: [
30+
"ocaml" {>= "4.05.0"}
31+
"ocamlfind" {with-test}
32+
"zarith"
33+
"hevea" {with-doc}
34+
"dune" {>= "2.7"}
35+
"dune-configurator"
36+
"odoc" {with-doc}
37+
"stdlib-shims"
38+
"ppx_deriving_yojson" {>= "3.2"}
39+
"yojson"
40+
"conf-perl"
41+
"cppo"
42+
]
43+
conflicts: ["cil"]
44+
build: [
45+
["dune" "subst"] {dev}
46+
[
47+
"dune"
48+
"build"
49+
"-p"
50+
name
51+
"-j"
52+
jobs
53+
"@install"
54+
"@runtest" {with-test}
55+
"@doc" {with-doc}
56+
]
57+
]
58+
dev-repo: "git+https://github.com/goblint/cil.git"
59+
depexts: [
60+
["perl-ExtUtils-MakeMaker"] {os-distribution = "centos" | os-distribution = "fedora" | os-distribution = "ol"}
61+
["perl-FindBin"] {os-distribution = "fedora"}
62+
["build-base"] {os-distribution = "alpine"}
63+
]
64+
available: arch != "ppc32" & arch != "ppc64"
65+
url {
66+
src:
67+
"https://github.com/goblint/cil/releases/download/2.0.0/goblint-cil-2.0.0.tbz"
68+
checksum: [
69+
"sha256=0467f30218c7ef03074b96912e46f58883e5229ba7d30102470191ad39a49b26"
70+
"sha512=08a7a1a79dce32072431dd681866682e9dab7acbc4cb6e0e2255d6b71fea7020d7fcf00bbbb130489b77f03fa244382dce30eca67d75967e81b06e09996d44a8"
71+
]
72+
}
73+
x-commit-hash: "9968b57aae763fd0b5d652e13e2f18b643eb82e4"

0 commit comments

Comments
 (0)