getting_started:compile_eeros
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
getting_started:compile_eeros [2020/10/22 14:12] – [Compile Using a Script] ursgraf | getting_started:compile_eeros [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Compile ====== | ||
- | |||
- | ===== Compile Using a Script ===== | ||
- | As mentioned in [[getting_started: | ||
- | If you do a cross development and your target contains a different processor architecture from your host, you have to choose a suitable //tool chain file// and also set the build and install directories to meaningful names. E.g. if you develop on a x86 platform for an ARM platform, edit '' | ||
- | < | ||
- | install_dir=" | ||
- | build_dir=" | ||
- | |||
- | toolchain_file=" | ||
- | </ | ||
- | You can omit the toolchain file if you use our [[https:// | ||
- | If you use ROS you have to make sure to take necessary steps as given in [[getting_started: | ||
- | After this you proceed with | ||
- | < | ||
- | $ ./make.sh | ||
- | </ | ||
- | |||
- | This will put all the executables into the build directory you have chosen and the compiled libraries together with the header files into the install directory. Please keep in mind that build and install directory are both defined in '' | ||
- | |||
- | Continue with [[getting_started: | ||
- | |||
- | |||
- | |||
- | ===== Compile Manually in Terminal ===== | ||
- | Compile and install EEROS to a custom folder as follows: | ||
- | < | ||
- | $ cd path/ | ||
- | $ mkdir build-eeros-x86-64 | ||
- | $ cd build-eeros-x86-64 | ||
- | $ cmake -DCMAKE_INSTALL_PREFIX=/ | ||
- | $ make | ||
- | $ make install | ||
- | </ | ||
- | If your target architectur is different from the host platform you have to use a //tool chain file//. For more information see above [[getting_started: | ||
- | Per default, debug information will be included in the code. For maximum efficiency make sure to change the 4th line to: | ||
- | < | ||
- | $ cmake -DCMAKE_INSTALL_PREFIX=/ | ||
- | </ | ||
- | |||
- | |||
- | We recommend to not install EEROS globally on your system. However, if you want to install it globally you have to execute the following commands: | ||
- | < | ||
- | $ make install | ||
- | </ | ||
- | The reason for not installing EEROS globally is that you might need two or even more versions as soon as you compile for various target architectures. For this purpose we will install various versions into custom folders named after the target architecture by setting the CMake variable CMAKE_INSTALL_PREFIX with | ||
- | < | ||
- | $ cmake -DCMAKE_INSTALL_PREFIX=/ | ||
- | </ | ||
- | |||
- | As soon as you access dedicated hardware on your system you have to install one of the [[eeros_architecture: |
getting_started/compile_eeros.1603368722.txt.gz · Last modified: 2020/10/22 14:12 by ursgraf