Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ Note that the mono package includes F\#.

Once these tools are installed, running SCons in the top-level directory will build the Vale tool:

```python.exe scons.py```
```./run_scons.sh```

To verify all Dafny sources in the [src](./src) directory, run:

```python.exe scons.py --DAFNY```
```./run_scons.sh --DAFNY```

To verify all F* sources in the [src](./src) directory (this requires an installation of [F*](https://github.com/FStarLang/FStar)), run:

```python.exe scons.py --FSTAR```
```./run_scons.sh --FSTAR```

NOTE: You can override tools/Kremlin by setting the KREMLIN_HOME
environment variable to point to the directory where KreMLin is
Expand Down
2 changes: 1 addition & 1 deletion run_scons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set -e

SCONS_PYTHON_MAJOR_MINOR=3.6
SCONS_PYTHON_MAJOR_MINOR=3.9

# Windows-only: print out the directory of the Python associated to SCons
windows_scons_python_dir () {
Expand Down