Hi –
I’ve used pybombs to install gnuradio et al using the default ~/pybombs
and ~/targets directory structure.
Now I need to add an OOT that is not available through pybombs. I’ve
tried guessing where to put the directory and how to compile, but I get
all sorts of errors.
I can’t find anything via Google about how to manually install into a
pybombs system. Can someone point me to directions?
Thanks!
John
Two things you could try:
- Copy a recipe for a similar sort of module, make a few changes to
create a build recipe for the desired module, and submit it to
pybombs, or
- Try set some environment variables by hand. This worked for me:
git clone https://github.com/bistromath/gr-rtty.git
mkdir gr-rtty/build
cd gr-rtty/build
env PKG_CONFIG_PATH=/home/gnuradio/lib/pkgconfig
CMAKE_PREFIX_PATH=/home/gnuradio/lib/cmake/gnuradio ccmake … # or
wherever you installed gnuradio
Posting a log of build failures would be handy.
On Thu, Apr 9, 2015 at 4:38 PM, John Ackermann N8UR [email protected]
wrote:
pybombs system. Can someone point me to directions?
Thanks!
John
Discuss-gnuradio mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
–
GDB has a ‘break’ feature; why doesn’t it have ‘fix’ too?
For most things, you just need to set all the include- and library paths
accordingly. If you have the env correctly set up, CMake might even pick
those up.
M