Skip to content

Commit

Permalink
README: Add clean and ccache instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mirenradia committed Jan 7, 2025
1 parent 9fc92c4 commit 1444aa8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,25 @@ A new `tmp_build_dir` directory will be created to store the compiled object and
auxiliary files. Assuming all is well, you should have an executable in the
current directory of the form `main<config>.ex` e.g. `main3d.gnu.MPI.OMP.ex`.
If you want to clean the current build configuration you can do
```bash
make cleanconfig
```
Note that this is similar to `make clean` for GRChombo examples.
If you want to clean all build configuration, you can do
```bash
make clean
```
Note that this is similar to `make realclean` for GRChombo examples.
To speed up subsequent compilations, you can install
[Ccache](https://ccache.dev/) and then add
```
USE_CCACHE = TRUE
```
to your `Make.local-pre` configuration file.
## Running the code
You can run the example as for GRChombo by passing the parameter file as the
Expand Down

0 comments on commit 1444aa8

Please sign in to comment.