Go to file
Daniel Kroening c801126b67
Merge pull request #2209 from diffblue/travis-no-osx-g++
Travis: remove g++ build on OS X
2018-05-21 11:16:28 +01:00
.githooks Make the pre-commit hook report non-temporary path names (#477) 2017-02-02 20:39:09 +00:00
cmake Add DownloadProject cmake script 2017-09-27 11:22:20 +01:00
doc Add option to generate function body to goto-instrument 2018-04-09 12:40:28 +01:00
pkg/arch Add CBMC package build file for Arch Linux 2017-04-26 16:29:00 +01:00
regression Amend faulty long-string test 2018-05-20 17:13:32 +01:00
scripts Remove trailing `;` from namespace closing bracket 2018-05-10 12:58:05 +02:00
src Merge pull request #2066 from tautschnig/bv-endianness 2018-05-20 21:02:03 +01:00
unit Merge pull request #1899 from danpoe/sharing-map-catch-unit-tests 2018-05-17 16:21:53 +01:00
.clang-format Sort includes using clang-format 2018-04-23 17:51:43 +01:00
.dir-locals.el Move Emacs style file so it affects unit tests as well as main source 2017-08-16 12:43:32 +01:00
.editorconfig Don't remove trailing spaces from patch files 2016-11-29 17:26:59 +00:00
.gitattributes added test.desc as text 2016-08-15 12:35:10 +01:00
.gitignore more files to ignore 2018-04-26 15:00:35 +01:00
.travis.yml remove g++ build on OS X; this is identical to the clang++ build 2018-05-20 18:53:40 +01:00
CHANGELOG remove the --fixedbv command-line option 2018-05-07 10:42:27 +01:00
CMakeLists.txt Migrate old string utils unit tests 2018-04-16 14:18:12 +01:00
CODEOWNERS Remove reuk as a code-owner 2018-03-22 15:02:44 +00:00
CODING_STANDARD.md Rephrase and justify curly brace alignment exceptions 2018-04-25 16:06:12 +01:00
COMPILING.md Builds require javac as of f66288b4 2018-03-23 19:57:35 +00:00
LICENSE update year 2016-09-05 17:05:55 +01:00
README.md Add online documentation to README 2018-03-23 13:06:58 +00:00
appveyor.yml Remove destination directory before trying to move to it in AppVeyor 2018-02-15 11:24:39 +00:00
buildspec.yml AWS Codebuild: 4th attempt to speed up install 2018-03-05 09:50:31 +00:00
gcloud-travis-cbmc.json.enc Add encrypted GCloud key for Travis 2018-03-20 12:16:01 +00:00

README.md

Build Status Build Status Build Status

CProver Wiki

CProver Documentation

About

CBMC is a Bounded Model Checker for C and C++ programs. It supports C89, C99, most of C11 and most compiler extensions provided by gcc and Visual Studio. It also supports SystemC using Scoot. It allows verifying array bounds (buffer overflows), pointer safety, exceptions and user-specified assertions. Furthermore, it can check C and C++ for consistency with other languages, such as Verilog. The verification is performed by unwinding the loops in the program and passing the resulting equation to a decision procedure.

For full information see cprover.org.

Versions

Get the latest release

  • Releases are tested and for production use.

Get the current develop version: git clone https://github.com/diffblue/cbmc.git

  • Develop versions are not recommended for production use.

Report bugs

If you encounter a problem please file a bug report:

Contributing to the code base

  1. Fork the repository
  2. Clone the repository git clone git@github.com:YOURNAME/cbmc.git
  3. Create a branch from the develop branch (default branch)
  4. Make your changes (follow the coding guidelines)
  5. Push your changes to your branch
  6. Create a Pull Request targeting the develop branch

License

4-clause BSD license, see LICENSE file.