User Tools

Site Tools


getting_started:compile_eeros

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
getting_started:compile_eeros [2017/06/22 08:52] – [Compile with KDevelop] grafgetting_started:compile_eeros [2019/04/25 11:39] – [Compile Using a Script] graf
Line 15: Line 15:
  
 ===== Compile in terminal ===== ===== Compile in terminal =====
- 
-Clone the EEROS source repository: 
-<code> 
-$ cd path/to/working/directory 
-$ git clone https://github.com/eeros-project/eeros-framework.git 
-</code> 
- 
-Checkout a stable version of EEROS: 
-<code> 
-$ cd eeros-framework 
-$ git checkout v0.5 
-</code> 
- 
-Tags in the format vX.Y are stable releases. To show all tags execute the following command: 
-<code> 
-$ git tag 
-</code> 
- 
 Compile and install EEROS to a custom folder: Compile and install EEROS to a custom folder:
 <code> <code>
Line 48: Line 30:
 </code> </code>
  
 +
 +We recommend to not install EEROS globally on your system. However, if you want to install EEROS globally you have to execute the following commands:
 +<code>
 +$ mkdir build
 +$ cd build
 +$ cmake ..
 +$ make
 +# make install
 +</code>
 +The reason for not installing EEROS globally is that you might need two or even more versions of EEROS as soon as you compile for various target architectures. For this purpose we will install various versions of EEROS into custom folders named after the target architecture by setting the CMake variable CMAKE_INSTALL_PREFIX. 
 +
 +As soon as you access dedicated hardware on your system you have to install one of the [[getting_started:install_wrapper|]].