Go to file
Lukasz A.J. Wrona 7949cac5f7 Add project(CBMC) to CMakeLists
Suppresses a "missing project" warning. Each CBMC project should have a project tag.
2019-10-14 15:10:00 +01:00
.githooks Make the pre-commit hook report non-temporary path names (#477) 2017-02-02 20:39:09 +00:00
.github Include User Guide item in pull request template 2018-11-15 19:23:58 +00:00
cmake Add DownloadProject cmake script 2017-09-27 11:22:20 +01:00
doc Document profiling option 2019-08-30 12:10:14 +01:00
integration/xen Fix Xen integration test 2019-03-06 22:34:06 +00:00
jbmc Merge pull request #5122 from danpoe/feature/append-object-constant-evaluation-tests 2019-10-11 14:06:04 +01:00
pkg/arch Add CBMC package build file for Arch Linux 2017-04-26 16:29:00 +01:00
regression fix for SMT-LIB2 scopes for function definitions and let 2019-10-09 14:51:04 +01:00
scripts Add comments to irep gdb pretty printer 2019-10-01 11:44:18 +01:00
src Merge pull request #5158 from diffblue/smt2_function_scoping_test 2019-10-13 14:51:37 +01:00
unit Add unit tests for inserting symbols with (non-)empty modules 2019-10-09 14:49:39 +01:00
.clang-format Disable clang-format for java 2019-08-30 15:35:22 +01:00
.clang-format-ignore Use .clang-format-ignore 2019-01-29 09:43:59 +00: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
.gitignore Update .gitignore for global Eclipse projects 2019-06-05 20:17:02 +01:00
.gitmodules Use submodule to download java-models-library 2018-07-09 21:13:37 +01:00
.travis.yml Merge pull request #4996 from antlechner/antonia/clang-exclude 2019-10-03 16:31:23 +01:00
CHANGELOG Add new goto-instrument option print-global-state-size 2018-06-20 09:38:30 +01:00
CMakeLists.txt Add project(CBMC) to CMakeLists 2019-10-14 15:10:00 +01:00
CODEOWNERS Make Romain a code owner for symex, per Peter Schrammel's recommendation 2019-09-26 10:06:51 +01:00
CODING_STANDARD.md Update coding standard for function brief documentation 2019-05-09 17:53:56 +01:00
COMPILING.md Update .gitignore for global Eclipse projects 2019-06-05 20:17:02 +01:00
LICENSE update year 2016-09-05 17:05:55 +01:00
MINI-PROJECTS.md Add CBMC Mini Projects list 2019-02-06 21:23:30 +00:00
README.md Add codecov badge 2019-05-30 22:06:16 +01:00
buildspec-linux-clang-3.8.yml Regularise the AWS CodeBuild Clang buildspecs 2019-06-06 09:49:12 +01:00
buildspec-linux-clang.yml switch codebuild from clang 7 to clang 8 2019-06-05 16:58:14 +01:00
buildspec-linux-cmake-gcc-cov.yml Remove entries about library code from lcov coverage file 2019-08-05 20:50:36 +01:00
buildspec-linux-cmake-gcc.yml Suppress color output on AWS CodeBuild 2019-05-10 18:43:47 +01:00
buildspec-linux-make-gcc-cov.yml Consolidate tests to 3 and run/upload via script 2019-09-19 10:30:30 +01:00
buildspec-msbuild.yml Test build of vcxproj files in CI as a separate CodeBuild job 2019-05-31 11:12:03 +00:00
buildspec-windows.yml Revert "Test build of vcxproj files in CI" 2019-05-31 10:41:32 +00:00
buildspec.yml Move LIBCXX_DEBUG flag from Travis to AWS codebuild 2019-05-30 13:26:58 +01: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 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

New contributors can look through the mini projects page for small, focussed feature ideas.

License

4-clause BSD license, see LICENSE file.