I installed boost in nonstandard location $HOME/gr, and thereby produced
the
same build failure as this gentleman
http://lists.gnu.org/archive/html/discuss-gnuradio/2005-06/msg00282.html
In my Linux environment, I set
CPPFLAGS=-I$HOME/gr/include/boost-1_33_1
export CPPFLAGS
and where
$ ls $HOME/gr/include/boost-1_33_1
boost
This constitutes a third fix for this failed build situation. The first
two
being 1) install boost in a standard location so the preprocessor can
find
stuff without being told, and 2) pass
–with-boost-include-dir=$HOME/gr/include/boost-1_33_1 to configure
hth somebody.
On Sun, Jun 25, 2006 at 07:12:01AM -0700, Mark Petrovic wrote:
I installed boost in nonstandard location $HOME/gr, and thereby
produced the
same build failure as this gentleman
[Discuss-gnuradio] CVS build problem with shared_ptr.hpp
Hi Mark,
Good to hear from you again.
In my Linux environment, I set
CPPFLAGS=-I$HOME/gr/include/boost-1_33_1
export CPPFLAGS
I would expect this to work if it was set prior to running
configure. Configure remembers certain environmentment variables and
copies them into the generated Makefiles. You can get the list it
cares about with ./configure --help
hth somebody.
–
Mark
Eric