@@ -45,12 +45,12 @@ If you see a different result, you are not using an Arm computer running 64-bit
4545
4646You need to install the following before building Cyclone DDS:
4747
48- - C and C++ compilers (GCC)
49- - Git
50- - CMake
51- - OpenSSL
48+ - C and C++ compilers (such as GCC).
49+ - Git.
50+ - CMake see [ How do I install CMake? ] ( /install-guides/cmake/ ) ).
51+ - OpenSSL.
5252
53- For Ubuntu Linux run the commands below. For other Linux distributions, use the package manager to install the above software.
53+ For Ubuntu Linux, run the commands below. For other Linux distributions, use the package manager to install the software listed above .
5454
5555``` bash
5656sudo apt update
@@ -61,7 +61,7 @@ sudo apt install -y gcc g++ git cmake libssl-dev
6161
6262You can install Cyclone DDS by building the source code.
6363
64- Clone the GitHub repository to create a build folder.
64+ Clone the GitHub repository to create a build folder:
6565
6666``` bash
6767cd $HOME
@@ -70,28 +70,28 @@ git clone https://github.com/eclipse-cyclonedds/cyclonedds.git
7070
7171Once downloaded, you can build and install Cyclone DDS.
7272
73- Enable ` BUILD_EXAMPLES ` and ` BUILD_TESTING ` so you can run the examples to verify the installation .
73+ Enable the flags ` BUILD_EXAMPLES ` (to compile the example applications included) and ` BUILD_TESTING ` ( to compile the test suite) .
7474
7575Here are the build and install commands:
7676
7777``` console
7878cd cyclonedds
79- mkdir build ; cd build
79+ mkdir build && cd build
8080cmake -DBUILD_EXAMPLES=ON -DBUILD_TESTING=ON ..
8181cmake --build .
8282sudo cmake --build . --target install
8383```
8484
85- Cyclone DDS is now installed in ` /usr/local `
85+ Cyclone DDS is now installed in ` /usr/local ` .
8686
8787{{% notice Note %}}
88- If you don't want to install Cyclone DDS in the default location of ` /usr/local ` you can specify another location
89- by adding ` -DCMAKE_INSTALL_PREFIX=<install-prefix> ` to the first ` cmake ` command with your alternate location.
88+ If you don't want to install Cyclone DDS in the default location of ` /usr/local ` , you can specify another location
89+ by adding ` -DCMAKE_INSTALL_PREFIX=<install-prefix> ` to the first ` cmake ` command with your alternative location.
9090{{% /notice %}}
9191
9292## How can I test Cyclone DDS?
9393
94- To verify the installation, you can run the Hello World example from the build directory.
94+ To verify the installation, you can run the ` Hello World ` example from the build directory.
9595
9696Open two terminals and navigate to the ` bin/ ` directory in each.
9797
@@ -108,7 +108,7 @@ Run the commands shown below in each tab in each of your two terminals:
108108 {{< /tab >}}
109109{{< /tabpane >}}
110110
111- If you observe the following output from each of terminal , Cyclone DDS is running correctly on your Arm Linux machine.
111+ If you observe the following output from each of the terminals , Cyclone DDS is running correctly on your Arm Linux machine.
112112
113113{{< tabpane code=true >}}
114114 {{< tab header="Publisher" language="log">}}
0 commit comments