You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows, install CBMC by downloading the `${{ env.CBMC_TAG }}-win64.msi` installer below, double-clicking on the installer to run it, and adding the folder `C:\Program Files\cbmc\bin` in your `PATH` environment variable.
70
+
On Windows, install CBMC by downloading the `cbmc-${{ env.CBMC_TAG }}-win64.msi` installer below, double-clicking on the installer to run it, and adding the folder `C:\Program Files\cbmc\bin` in your `PATH` environment variable.
66
71
67
72
For installation from the windows command prompt, run:
68
73
69
74
```sh
70
-
msiexec /i ${{ env.CBMC_TAG }}-win64.msi
75
+
msiexec /i cbmc-${{ env.CBMC_TAG }}-win64.msi
71
76
PATH="C:\Program Files\cbmc\bin";%PATH%
72
77
```
73
78
74
79
Note that we depend on the Visual C++ redistributables. You likely already have these, if not please download and run vcredist.x64.exe from Microsoft to install them prior to running cbmc, or make sure you have Visual Studio 2019 installed.
75
80
76
81
You can download either [Visual Studio 2019 Community Edition](https://visualstudio.microsoft.com/vs/community/) or the [Visual C++ Redistributables](https://support.microsoft.com/en-gb/help/2977003/the-latest-supported-visual-c-downloads) from Microsoft for free.
82
+
83
+
## Docker
84
+
85
+
To run the CProver suite of tools under a Docker container, make sure that
86
+
[Docker](https://www.docker.com/) is already installed in your system and
87
+
set up correctly, and then issue:
88
+
89
+
```sh
90
+
$ docker run -it diffblue/cbmc:${{ env.CBMC-TAG }}
91
+
#
92
+
```
93
+
94
+
That will initialise an execution of the container based on the image pushed
95
+
as part of this release. The CProver tools are present in the `$PATH` of the
0 commit comments