Project

General

Profile

BuildInstructionsPage » History » Version 1

zecke, 04/22/2017 04:23 PM

1 1 zecke
2
= O B S O L E T E =
3
4
In late 2013/early 2014 OP25 was migrated from svn to git.  At the same time two other major changes 
5
were made (GNU Radio 3.7 API, which is not backward compatible; and automake was removed and replaced
6
with cmake).  This page contains instructions for building the old SVN and GR3.6 version of OP25.
7
8
See the new install page
9
10
= Getting and Building OP25 =
11
This page describes how you can get the latest version of OP25 and build it for your computer.
12
13
== Installing the Pre-requisites ==
14
Before doing anything you'll need to make sure you have all the pre-requisite software installed. At the very minimum this will include:
15
 * Subversion -- Revision control software to access the source code repository
16
 * g++ -- The GNU C++ compiler,
17
 * make -- GNU Make,
18
 * GNURadio (Release 3.6 or later) -- The free software digital signal processing toolkit and
19
 * autoconf+automake -- So you can create the configure script and makefiles.
20
 * [http://itpp.sourceforge.net IT++] A library of communications-related code.
21
22
The details on what you need to obtain and how you do so vary between GNU/Linux distributions. Its easiest on Debian (and derived distributions such as Ubuntu) and can be quite painful on some distributions. Your mileage probably varies so feel free to document the process thoroughly. We get the pre-requisites installed with one command on Ubuntu as follows:
23
24
{{{
25
sudo apt-get -y install swig g++ automake libtool python-dev libfftw3-dev \
26
libcppunit-dev libboost-all-dev libusb-dev fort77 sdcc sdcc-libraries \
27
libsdl1.2-dev python-wxgtk2.8 subversion git-core guile-1.8-dev \
28
libqt4-dev python-numpy ccache python-opengl libgsl0-dev \
29
python-cheetah python-lxml doxygen qt4-dev-tools \
30
libqwt5-qt4-dev libqwtplot3d-qt4-dev pyqt4-dev-tools libitpp-dev \
31
bison flex libgtk2.0-dev libpcap-dev
32
}}}
33
34
== Downloading the Source Code ==
35
Now you should be ready to get the source code. The best way to do this is using Subversion:
36
37
{{{
38
svn co http://op25.osmocom.org/svn/trunk op25
39
}}}
40
41
This should create a directory named 'op25' containing the latest version of the source files.
42
43
== Compiling ==
44
Compiling and installing OP25 requires you run the following commands:
45
46
{{{
47
cd op25/blocks
48
./bootstrap && ./configure && make
49
make check
50
sudo make install
51
}}}
52
53
Of course, you won't get away with it that easily! There are probably going to be compile errors and such that require you to install missing packages. Please make a careful note of the packages you need to install and problems you encounter. Then you can update this Wiki page to help others following after. For people without a login for the Wiki you can [mailto:op25-help@sedition.org.au email me] with your notes. Developers can request a Wiki/Subversion login (with your preferred username/password).
54
55
== Compiling the imbe_vocoder block ==
56
57
For the most part, you can follow the directions in the INSTALL file.  Don't forget to run the bootstrap script prior to running configure.  You may also be able to get some extra speed by enabling some additional gcc optimizations.  Here's one possible build sequence:
58
{{{
59
cd op25/imbe_vocoder
60
sh bootstrap
61
./configure CXXFLAGS="-O3"
62
make
63
sudo make install
64
}}}
65
66
Note: the 'decoder' block (see above) must have previously been installed prior to building this block.
67
68
== Compiling the repeater block ==
69
70
First, compile the imbe_vocoder block (see above).  Then do
71
{{{
72
cd op25/repeater
73
sh bootstrap
74
./configure
75
make
76
sudo make install
77
}}}
78
79
80
== Build instructions for the Linux novice ==
81
82
[BeginnersBuildDeprecated These directions for beginners] might be of help to those without a background in Linux to get the project up and running, or even those with experience who are running into a wall getting a piece to build.  
Add picture from clipboard (Maximum size: 48.8 MB)