Skip to content

Commit

Permalink
add linux build instructions to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aszarth committed Oct 7, 2024
1 parent 6b222fc commit ca39149
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@ cmake -DCMAKE_BUILD_TYPE=Release ..
make
```

## Building on Linux (with Docker)

Replace `/home/user/open.mp` with your actual path in the last command `docker run`

```bash
cd open.mp
mkdir build
cd docker/build_ubuntu-18.04
docker build -t openmp .
docker run --rm -ti -v /home/user/open.mp:/omp -w /omp openmp
```

After that, in `./open.mp/build/Output/Release/Server`, you will find the `omp-server` file and the `components/` folder.

0 comments on commit ca39149

Please sign in to comment.