discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] Again on "cannot import name bbn"


From: Johnathan Corgan
Subject: Re: [Discuss-gnuradio] Again on "cannot import name bbn"
Date: Tue, 09 Dec 2008 08:53:53 -0800

On Tue, 2008-12-09 at 11:53 +0100, Chiara De Dominicis wrote:

> doc/Makefile.am:77: `%'-style pattern rules are a GNU make extension
> doc/Makefile.am:80: `%'-style pattern rules are a GNU make extension
> 
> I thought it was only a warning but probably it isn't so....

This is indeed a warning, and harmless.

> bbn_tap.cc: In constructor 'bbn_tap::bbn_tap(std::string, int)':
> bbn_tap.cc:51: error: 'memset' was not declared in this scope
> bbn_tap.cc:53: error: 'strncpy' was not declared in this scope

Are you using gcc 4.3?  It now enforces having the proper #include
directives for certain standard library functions that it would
previously silently ignore.  I'd try adding

#include <string.h>

...at the top of bbn_tap.cc to see if this goes away.

-Johnathan






reply via email to

[Prev in Thread] Current Thread [Next in Thread]