Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryngelson authored Jun 9, 2024
1 parent 69d7319 commit 845e932
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ Put it to a convenient directory via
git clone https://github.com/MFlowCode/MFC.git
cd MFC
```
and be sure MFC knows what compilers to use by appending your `~/.profile` file via this command
and be sure MFC knows what compilers to use by appending and sourcing your `~/.profile` file via this command
```shell
echo -e "export CC=gcc-13 \nexport CXX=g++-13 \nexport FC=gfortran-13" >> ~/.profile
source ~/.profile
```
and source that file, build, and test!
then you can build MFC and run the test suite!
```shell
source ~/.profile
./mfc.sh build -j 8
./mfc.sh test -j 8
./mfc.sh build -j $(nproc)
./mfc.sh test -j $(nproc)
```
And... you're done!

Expand Down

0 comments on commit 845e932

Please sign in to comment.