|
@@ -13,11 +13,34 @@ Documentation is generated from Doxygen annotations in the source code. The curr
|
|
|
|
|
|
## Build Procedure
|
|
|
### Ubuntu
|
|
|
+
|
|
|
+#### Install build infrastructure
|
|
|
```bash
|
|
|
-# install build infrastructure
|
|
|
sudo apt-get install git build-essential gcc cmake python python-lxml
|
|
|
+```
|
|
|
+
|
|
|
+##### Notes on older systems e.g. 12.04 LTS
|
|
|
+* Manual install of check framework
|
|
|
+```bash
|
|
|
+wget http://security.ubuntu.com/ubuntu/pool/main/c/check/check_0.9.10-6ubuntu3_amd64.deb
|
|
|
+sudo dpkg -i check_0.9.10-6ubuntu3_amd64.deb
|
|
|
+```
|
|
|
+or for i386
|
|
|
+```bash
|
|
|
+wget http://security.ubuntu.com/ubuntu/pool/main/c/check/check_0.9.10-6ubuntu3_i386.deb
|
|
|
+sudo dpkg -i check_0.9.10-6ubuntu3_386.deb
|
|
|
+```
|
|
|
+* Manuall install of gcc-4.8
|
|
|
+```bash
|
|
|
+sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
|
|
+sudo apt-get update; sudo apt-get install gcc-4.8
|
|
|
+sudo update-alternatives --remove-all gcc
|
|
|
+sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20
|
|
|
+sudo update-alternatives --config gcc
|
|
|
+```
|
|
|
|
|
|
-# build
|
|
|
+#### Build
|
|
|
+```bash
|
|
|
git clone https://github.com/acplt/open62541.git
|
|
|
cd open62541
|
|
|
mkdir build
|