27 * FLAC (Lossless audio) |
27 * FLAC (Lossless audio) |
28 * Vorbis (Audio) |
28 * Vorbis (Audio) |
29 |
29 |
30 ---- |
30 ---- |
31 |
31 |
32 ### Fedora 32/33 on 64bit system dependencies |
32 ### Fedora 32/33/34/35/36 on 64bit system dependencies |
33 Run the command below to install all the dependencies on Fedora distros after Fedora 26. |
33 Run the command below to install all the dependencies on Fedora distros after Fedora 26. |
34 |
34 |
35 ```$ sudo dnf install gcc cmake cmake-gui libX11 libXinerama-devel libXrandr-devel libXext doxygen freetype freetype-devel pulseaudio-libs-devel fontconfig-devel libcurl flac-devel libvorbis-devel``` |
35 ```$ sudo dnf install gcc g++ cmake cmake-gui libX11-devel libXinerama-devel libXrandr-devel libXext doxygen freetype freetype-devel pulseaudio-libs-devel fontconfig-devel libcurl flac-devel libvorbis-devel ghc-OpenGL-devel``` |
36 |
36 |
37 ---- |
37 ---- |
38 |
38 |
39 ### Ubuntu 18.04 64 bit system dependencies |
39 ### Ubuntu 18.04 64 bit system dependencies |
40 Run the command below to install all the dependencies on Ubuntu 18.04. |
40 Run the command below to install all the dependencies on Ubuntu 18.04. |
80 d. If you do not want to install libraries, you may select built-in. |
80 d. If you do not want to install libraries, you may select built-in. |
81 e. Then click Configure and Generate and close the cmake gui. |
81 e. Then click Configure and Generate and close the cmake gui. |
82 |
82 |
83 6. Now run the command below to make files. |
83 6. Now run the command below to make files. |
84 |
84 |
85 ```$ make``` |
85 ```$ cmake --build .``` |
86 |
86 |
87 **Note:** Add -j8, -j4 for the number of CPU cores you would like to use to build Gorgon as it can take time with a sigle core. |
87 **Note:** Add -j8, -j4 for the number of CPU cores you would like to use to build Gorgon as it can take time with a sigle core. |
88 |
88 |
89 7. Finally install Gorgon using sudo users. |
89 7. Finally install Gorgon using sudo users. |
90 |
90 |
91 ```$ sudo make install``` |
91 ```$ sudo cmake --install .``` |
92 |
92 |