Project

General

Profile

Installation » History » Version 2

ptrkrysik, 07/06/2018 10:36 AM

1 2 ptrkrysik
h1. Manual compilation and installation
2 1 ptrkrysik
3
Currently manual method of installation is considered to be the easiest way to get newest version of *gr-gsm* up and running. The *gr-gsm* repository contains automatic tests of manual installation in form of [dockerfiles](https://github.com/ptrkrysik/gr-gsm/tree/development/tests/dockerfiles) that are built and executed by [Travis CI](https://travis-ci.org/ptrkrysik/gr-gsm/builds) continuous integration service. Travis CI informs if particular revision of *gr-gsm* builds and passes tests on a set of GNU/Linux distributions. History of the results can be checked on [the *gr-gsm*'s Travis CI page](https://travis-ci.org/ptrkrysik/gr-gsm/builds).
4
5
The instructions presented here are a version of [dockerfiles](https://github.com/ptrkrysik/gr-gsm/tree/development/tests/dockerfiles) with stripped instructions specific to docker and without running unit tests. This wiki might at some moment be behind installation procedures contained in the [dockerfiles](https://github.com/ptrkrysik/gr-gsm/tree/development/tests/dockerfiles) so in case of installation problems it is a good idea to look in there.
6
7 2 ptrkrysik
h2. Debbian-based distributions (Debian Testing, Ubuntu >=16.04, Kali Rolling Edition) 
8 1 ptrkrysik
9
First install all needed prerequisites with following command:
10
11
```
12
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
13
    cmake \
14
    autoconf \
15
    libtool \
16
    pkg-config \
17
    build-essential \
18
    python-docutils \
19
    libcppunit-dev \
20
    swig \
21
    doxygen \
22
    liblog4cpp5-dev \
23
    python-scipy \
24
    gnuradio-dev \
25
    gr-osmosdr \
26
    libosmocore-dev
27
```
28
29
Currently on Debian Testing and Kali Rolling execution of following command is needed:
30
``` sudo ln -sf /usr/lib/x86_64-linux-gnu/libvolk.so.1.3.1 /usr/lib/x86_64-linux-gnu/libvolk.so.1.3 ```
31
It is a workaround due to an [issue](https://github.com/ptrkrysik/gr-gsm/pull/378#issuecomment-379587145) with faulty libvolk installation on these systems at the moment.
32
33
Then download the *gr-gsm*'s source and build it with following commands:
34
```
35
git clone https://git.osmocom.org/gr-gsm
36
 cd gr-gsm
37
 mkdir build
38
 cd build
39
 cmake ..
40
# The parallel build sometimes fails when the .grc_gnuradio
41
# and .gnuradio directories do not exist
42
 mkdir $HOME/.grc_gnuradio/ $HOME/.gnuradio/
43
 make #to speedup compilation you can use parallel build
44
      #"make -j $nproc" where $nproc is number of CPU cores
45
 sudo make install
46
 sudo ldconfig
47
```
Add picture from clipboard (Maximum size: 48.8 MB)