Fast RTPS installation

Fast RTPS installation - 图1

eprosima Fast RTPS is a C++ implementation of the RTPS (Real Time Publish Subscribe) protocol, which provides publisher-subscriber communications over unreliable transports such as UDP, as defined and maintained by the Object Management Group (OMG) consortium. RTPS is also the wire interoperability protocol defined for the Data Distribution Service (DDS) standard, again by the OMG.

NOTE: The information here was extracted from original eprosima Fast RTPS documentation

Requirements

eProsima Fast RTPS requires the following packages to work.

Run Dependencies

Java

Java is required to make use of our built-in code generation tool fastrtpsgen. It’s recommended install Java JDK 8.

Windows 7 32-bit and 64-bit

Visual C++ 2013 or 2015 Redistributable Package

eProsima Fast RTPS requires the Visual C++ Redistributable packages for the Visual Studio version you choose during the installation or compilation. The installer gives you the option of downloading and installing them.

NOTE: For more information, please, visit Requirements

Installation from Sources

Clone the project from Github:

  1. $ git clone https://github.com/eProsima/Fast-RTPS
  2. $ mkdir Fast-RTPS/build && cd Fast-RTPS/build

If you are on Linux, execute:

  1. $ cmake -DTHIRDPARTY=ON ..
  2. $ make
  3. $ sudo make install

If you are on Windows, choose your version of Visual Studio:

  1. > cmake -G "Visual Studio 14 2015 Win64" -DTHIRDPARTY=ON ..
  2. > cmake --build . --target install

If you want to compile the examples, you will need to add the argmuent -DCOMPILE_EXAMPLES=ON when calling CMake.

If you want to compile the performance tests, you will need to add the argument -DPERFORMANCE_TESTS=ON when calling CMake.

NOTE: For more information, please, visit Installation from Sources

Installation from Binaries

You can always download the latest binary realese of eProsima Fast RTPS from the company website.

Windows 7 32-bit and 64-bit

Execute the installer and follow the instructions, choosing your preferred Visual Studio version and architecture when prompted.

Environmental Variables

eProsima Fast RTPS requires the following environmental variable setup in order to function properly

  • FASTRTPSHOME: Root folder where eProsima Fast RTPS is installed.
  • Additions to the PATH: the /bin folder and the subfolder for your Visual Studio version of choice should be appended to the PATH.

These variables are set automatically by checking the corresponding box during the installation process.

Linux

Extract the contents of the package. It will containt both eProsima Fast RTPS and its required package eProsima Fast CDR. You will have follow the same procedure for both packages, starting with Fast CDR.

Configure the compilation:

  1. $ ./configure --libdir=/usr/lib

If you want to compile with debug symbols (which also enables verbose mode):

  1. $ ./configure CXXFLAGS="-g -D__DEBUG" --libdir=/usr/lib

After configuring the project compile and install the library:

  1. $ sudo make install

NOTE: For more information, please, visit Installation from Binaries