File tree Expand file tree Collapse file tree 1 file changed +23
-2
lines changed
Expand file tree Collapse file tree 1 file changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,26 @@ The following reporting technologies are considered in practice:
2323git submodule update --init --recursive
2424```
2525
26+ ### Static analysis of project
27+ * ** Windows (MSVC)** :
28+
29+ Unsupported operating system!
30+
31+ * ** Linux (` gcc ` and ` clang ` )** :
32+ ```
33+ sudo apt install cppcheck
34+ ```
35+ * ** MacOS (apple clang)** :
36+ ```
37+ brew install cppcheck
38+ ```
39+
2640### Parallel programming technologies
2741### ` MPI `
2842 * ** Windows (MSVC)** :
29- [ Installers link.] ( https://www.microsoft.com/en-us/download/details.aspx?id=57467 ) You have to install ` msmpisdk.msi ` and ` msmpisetup.exe ` .
43+
44+ [ Installers link.] ( https://www.microsoft.com/en-us/download/details.aspx?id=57467 ) You have to install ` msmpisdk.msi ` and ` msmpisetup.exe ` .
45+
3046 * ** Linux (` gcc ` and ` clang ` )** :
3147 ```
3248 sudo apt install mpich
@@ -39,7 +55,9 @@ git submodule update --init --recursive
3955 ```
4056
4157### ` OpenMP `
58+
4259 ` OpenMP ` is included into ` gcc ` and ` msvc ` , but some components should be installed additionally:
60+
4361 * ** Linux (` gcc ` and ` clang ` )** :
4462 ```
4563 sudo apt install libomp-dev
@@ -50,7 +68,10 @@ git submodule update --init --recursive
5068 ```
5169
5270### ` TBB `
53- * ** Windows (` MSVC ` )** : ` CMake ` installs ` TBB ` while you run ` cmake ` for that project on Windows.
71+ * ** Windows (` MSVC ` )** :
72+
73+ ` CMake ` installs ` TBB ` while you run ` cmake ` for that project on Windows.
74+
5475 * ** Linux (` gcc ` and ` clang ` )** :
5576 ```
5677 sudo apt-get install libtbb-dev
You can’t perform that action at this time.
0 commit comments