File tree 1 file changed +23
-2
lines changed
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:
23
23
git submodule update --init --recursive
24
24
```
25
25
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
+
26
40
### Parallel programming technologies
27
41
### ` MPI `
28
42
* ** 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
+
30
46
* ** Linux (` gcc ` and ` clang ` )** :
31
47
```
32
48
sudo apt install mpich
@@ -39,7 +55,9 @@ git submodule update --init --recursive
39
55
```
40
56
41
57
### ` OpenMP `
58
+
42
59
` OpenMP ` is included into ` gcc ` and ` msvc ` , but some components should be installed additionally:
60
+
43
61
* ** Linux (` gcc ` and ` clang ` )** :
44
62
```
45
63
sudo apt install libomp-dev
@@ -50,7 +68,10 @@ git submodule update --init --recursive
50
68
```
51
69
52
70
### ` 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
+
54
75
* ** Linux (` gcc ` and ` clang ` )** :
55
76
```
56
77
sudo apt-get install libtbb-dev
You can’t perform that action at this time.
0 commit comments