blob: 971c56ff5bbc8bcb99d0906cb1c698787a85e50b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
########################################################################
## GRAS - The GNU Radio Advanced Scheduler
########################################################################
Read all about the project goals here:
https://github.com/guruofquality/gras/wiki
------------------------------------------------------------------------
-- Prerequisites
------------------------------------------------------------------------
* standard gnuradio prereqs
* libnuma (linux only)
------------------------------------------------------------------------
-- Get the source code
------------------------------------------------------------------------
git clone https://github.com/guruofquality/gras.git gras
cd gras
git submodule init
git submodule update
------------------------------------------------------------------------
-- Build and Install instructions (unix makefiles)
------------------------------------------------------------------------
mkdir <build-dir>
cd <build-dir>
cmake <gras-source-dir>/gnuradio
make
sudo make install
sudo ldconfig
------------------------------------------------------------------------
-- Build and Install instructions (MSVC)
------------------------------------------------------------------------
Untested. Minor fixes may be needed but it should work.
|