Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
1_0:install-source [2018/05/22 11:57] rdrighetto [gfortran (incl. bindings)] |
1_0:install-source [2024/01/16 10:51] (current) admin [Getting the source code] |
||
---|---|---|---|
Line 7: | Line 7: | ||
Alternatively the GIT repository can also be cloned (For this, installation of '' | Alternatively the GIT repository can also be cloned (For this, installation of '' | ||
- | '' | + | '' |
===== Installing Dependencies ===== | ===== Installing Dependencies ===== | ||
Line 23: | Line 23: | ||
==== gfortran (incl. bindings) ==== | ==== gfortran (incl. bindings) ==== | ||
Some programs of the kernel are written in fortran. Thus compiling Focus requires a fortran compiler. Note that we only support the GNU fortran compiler '' | Some programs of the kernel are written in fortran. Thus compiling Focus requires a fortran compiler. Note that we only support the GNU fortran compiler '' | ||
+ | On OSX, you can install this via "brew install gcc". | ||
Please make sure to use gfortran **version 5.x** or later. | Please make sure to use gfortran **version 5.x** or later. | ||
+ | |||
==== g++ (incl. bindings) ==== | ==== g++ (incl. bindings) ==== | ||
Line 36: | Line 38: | ||
Make sure that the gcc/g++ from the clang is not used to build otherwise it will fail. | Make sure that the gcc/g++ from the clang is not used to build otherwise it will fail. | ||
- | On OSX, you might have to do "cd / | + | On OSX, you might have to do "cd / |
Or, depending on the g++ and gcc versions that you have installed, you might need to do "cd / | Or, depending on the g++ and gcc versions that you have installed, you might need to do "cd / | ||
==== libfftw3 ==== | ==== libfftw3 ==== | ||
Focus requires fftw version 3.0.0 or later. The package is called '' | Focus requires fftw version 3.0.0 or later. The package is called '' | ||
+ | < | ||
./configure --enable-shared --enable-single --enable-threads --enable-sse --enable-sse2 --with-pic; | ./configure --enable-shared --enable-single --enable-threads --enable-sse --enable-sse2 --with-pic; | ||
+ | </ | ||
- | # ( make sure those --enable are actually two minus (" | + | < |
make; | make; | ||
+ | </ | ||
+ | < | ||
sudo make install; | sudo make install; | ||
+ | </ | ||
+ | < | ||
make clean; | make clean; | ||
+ | </ | ||
+ | < | ||
./configure --enable-shared --enable-threads --enable-sse2 --with-pic; | ./configure --enable-shared --enable-threads --enable-sse2 --with-pic; | ||
+ | </ | ||
+ | < | ||
make; | make; | ||
+ | </ | ||
+ | < | ||
sudo make install | sudo make install | ||
+ | </ | ||
==== Qt5 ==== | ==== Qt5 ==== | ||
Compilations of Qt5 is included in all the package managers we listed above. Qt5 can also be downloaded and installed from: http:// | Compilations of Qt5 is included in all the package managers we listed above. Qt5 can also be downloaded and installed from: http:// | ||
+ | |||
+ | You also need the " | ||
+ | Installing the qtscript5-dev is also needed. | ||
+ | |||
+ | On Linux, the command | ||
+ | |||
+ | '' | ||
+ | '' | ||
+ | |||
+ | solves that problem. | ||
Make sure that after the installation you add Qt5 bin directory to the environment variable $PATH, and that: | Make sure that after the installation you add Qt5 bin directory to the environment variable $PATH, and that: | ||
- | '' | + | '' |
+ | '' | ||
gives you correct path to installed Qt libraries. | gives you correct path to installed Qt libraries. | ||
Line 70: | Line 95: | ||
**NOTE for Mac OSX Users:** Qt Version 5.9.4 worked fine, while Qt Version 5.10.1 caused the error: | **NOTE for Mac OSX Users:** Qt Version 5.9.4 worked fine, while Qt Version 5.10.1 caused the error: | ||
" | " | ||
+ | |||
+ | |||
===== Compiling Focus ===== | ===== Compiling Focus ===== | ||
Once everything is set up, CMAKE will automatically find the required paths and compile. This all has been scripted and Focus can easily be compiled by running the '' | Once everything is set up, CMAKE will automatically find the required paths and compile. This all has been scripted and Focus can easily be compiled by running the '' | ||
Line 78: | Line 105: | ||
Focus is compiled in two stages. First we check the presence of all required dependencies and in the second stage we compile the entire source tree. | Focus is compiled in two stages. First we check the presence of all required dependencies and in the second stage we compile the entire source tree. | ||
+ | |||
+ | Upon building, Focus creates a directory " | ||
=== See also: === | === See also: === | ||
Line 83: | Line 112: | ||
[[1_0: | [[1_0: | ||
- |