Sten před 10 roky
rodič
revize
68bd201599
1 změnil soubory, kde provedl 25 přidání a 2 odebrání
  1. 25 2
      README.md

+ 25 - 2
README.md

@@ -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