From ca391495e0bbe92f725ce17d9e5b6939eb1d7490 Mon Sep 17 00:00:00 2001 From: aszarth Date: Mon, 7 Oct 2024 08:30:51 -0300 Subject: [PATCH] add linux build instructions to README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 39b602848..67a837445 100644 --- a/README.md +++ b/README.md @@ -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.