package goblint
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=ca24f72fa9a87d288affe97c411753f14b7802bab4ca3649b337276b89bf5674
sha512=394b3521ccda0da91540cebb2f433f7525763060be4bbe179edd3b952a3580a8e173c4e410fc6895dc67fe6d17e6699aeddfed600f4692858bec093dd912bf1e
Description
Published: 27 Sep 2023
README
Goblint
Documentation can be browsed on Read the Docs or GitHub.
Installing
Both for using an up-to-date version of Goblint or developing it, the best way is to install from source by cloning this repository. For benchmarking Goblint, please follow the Benchmarking guide on Read the Docs.
Linux
Install opam.
Make sure the following are installed:
git
,patch
,m4
,autoconf
,libgmp-dev
,libmpfr-dev
andpkg-config
.Run
make setup
to install OCaml and dependencies via opam.Run
make
to build Goblint itself.Run
make install
to install Goblint into the opam switch for usage via switch'sPATH
.Optional: See
scripts/bash-completion.sh
for setting up bash completion for Goblint arguments.
MacOS
Install GCC with
brew install gcc
(first runxcode-select --install
if you don't want to build it from source). Goblint requires GCC while macOS's defaultcpp
is Clang, which will not work.ONLY for M1 (ARM64) processor: homebrew changed its install location from
/usr/local/
to/opt/homebrew/
. For packages to find their dependecies executesudo ln -s /opt/homebrew/{include,lib} /usr/local/
.Continue using Linux instructions (the formulae in brew for
patch
,libgmp-dev
,libmpfr-dev
aregpatch
,gmp
,mpfr
, respectively).
Windows
Install WSL2. Goblint is not compatible with WSL1.
Continue using Linux instructions in WSL.
Other
devcontainer. Select "Reopen in Container" in VS Code and continue with
make
using Linux instructions in devcontainer.Docker (GitHub Container Registry). Run
docker pull ghcr.io/goblint/analyzer:latest
(or:nightly
).Docker (repository). Clone and run
docker build -t goblint .
.Vagrant. Clone and run
vagrant up && vagrant ssh
.
Running
To confirm that building worked, you can try running Goblint as follows:
./goblint tests/regression/04-mutex/01-simple_rc.c
To confirm that installation into the opam switch worked, you can try running Goblint as follows:
goblint tests/regression/04-mutex/01-simple_rc.c
To confirm that the Docker container worked, you can try running Goblint as follows:
docker run -it --rm -v $(pwd):/data goblint /data/tests/regression/04-mutex/01-simple_rc.c
If pulled from GitHub Container Registry, use the container name ghcr.io/goblint/analyzer:latest
(or :nightly
) instead.
For further information, see documentation.
Dependencies (25)
- conf-gcc
-
conf-gmp
>= "3"
- catapult-file
- catapult
- uuidm
-
yaml
>= "3.0.0"
- arg-complete
- cpu
-
fileutils
>= "0.6.4"
-
sha
>= "1.12"
-
jsonrpc
>= "1.12"
- json-data-encoding
- dune-build-info
- dune-site
- fpath
-
ppx_deriving_yojson
>= "3.7.0"
- ppx_deriving_hash
- ppx_deriving
-
qcheck-core
>= "0.19"
-
yojson
>= "2.0.0"
-
zarith
>= "1.8"
-
batteries
>= "3.5.0"
-
goblint-cil
>= "2.0.2" & < "2.0.4"
-
ocaml
>= "4.10"
-
dune
>= "3.6"
Dev Dependencies (5)
-
benchmark
with-test
-
conf-ruby
with-test
-
odoc
with-doc
-
qcheck-ounit
with-test
-
ounit2
with-test
Used by
None