From 3de435493a762fdbf8666e6a79b1ac4463e31efd Mon Sep 17 00:00:00 2001 From: livox Date: Tue, 21 May 2019 08:41:20 +0800 Subject: [PATCH] Created The installation of Livox SDK in Linux 32-bit system (markdown) --- ...ion-of-Livox-SDK-in-Linux-32-bit-system.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 The-installation-of-Livox-SDK-in-Linux-32-bit-system.md diff --git a/The-installation-of-Livox-SDK-in-Linux-32-bit-system.md b/The-installation-of-Livox-SDK-in-Linux-32-bit-system.md new file mode 100644 index 0000000..5fdde99 --- /dev/null +++ b/The-installation-of-Livox-SDK-in-Linux-32-bit-system.md @@ -0,0 +1,30 @@ +# 1 Livox SDK API + +Livox SDK API provides a set of C style functions which can be conveniently integrated in C/C++ programs. Please refer to the [Livox SDK API Reference](https://livox-sdk.github.io/Livox-SDK/) for further information. + +## 1.1 Installation +The installation procedures in Ubuntu 16.04/14.04 32-bit LTS are shown here as examples. +### 1.1.1 Ubuntu 16.04/14.04 32-bit LTS +#### Dependencies +Livox SDK requires [CMake 3.0.0+](https://cmake.org/), [Apache Portable Runtime (APR) 1.61+](http://apr.apache.org/) and [Boost 1.54+](https://www.boost.org/) as dependencies. You need to install boost, cmake using apt: +``` +sudo apt install cmake libboost-atomic-dev libboost-system-dev +``` +And download the newest apr linux source file in [Apache Portable Runtime (APR) 1.61+](http://apr.apache.org/): +``` +tar -zxvf apr-1.X.X.tar.gz +cd apr-1.X.X +./configure --prefix=/usr/local/apr --disable-lfs +make && sudo make install +``` +#### Compile Livox SDK +In the Livox SDK directory, run the following commands to compile the project: +``` +git clone https://github.com/Livox-SDK/Livox-SDK.git +cd Livox-SDK/build +PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/apr/lib/pkgconfig/ && export PKG_CONFIG_PATH +cmake .. +make +sudo make install +``` +As the PKG_CONFIG_PATH will only take effect on the current terminal, you will need to run `PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/apr/lib/pkgconfig/ && export PKG_CONFIG_PATH` on every new shell, unless you add this line to your .bashrc as an environment variable. \ No newline at end of file