We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b222fc commit ca39149Copy full SHA for ca39149
README.md
@@ -70,6 +70,16 @@ cmake -DCMAKE_BUILD_TYPE=Release ..
70
make
71
```
72
73
+## Building on Linux (with Docker)
74
75
+Replace `/home/user/open.mp` with your actual path in the last command `docker run`
76
77
+```bash
78
+cd open.mp
79
+mkdir build
80
+cd docker/build_ubuntu-18.04
81
+docker build -t openmp .
82
+docker run --rm -ti -v /home/user/open.mp:/omp -w /omp openmp
83
+```
84
85
+After that, in `./open.mp/build/Output/Release/Server`, you will find the `omp-server` file and the `components/` folder.
0 commit comments