commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r9335 - gnuradio/branches/features/mp-sched


From: eb
Subject: [Commit-gnuradio] r9335 - gnuradio/branches/features/mp-sched
Date: Tue, 19 Aug 2008 16:42:22 -0600 (MDT)

Author: eb
Date: 2008-08-19 16:42:21 -0600 (Tue, 19 Aug 2008)
New Revision: 9335

Added:
   gnuradio/branches/features/mp-sched/README.building-boost
Removed:
   gnuradio/branches/features/mp-sched/README.building-boost-1.35
Modified:
   gnuradio/branches/features/mp-sched/Makefile.am
   gnuradio/branches/features/mp-sched/README
Log:
Boost doc upgrades.  Mention 1.36

Modified: gnuradio/branches/features/mp-sched/Makefile.am
===================================================================
--- gnuradio/branches/features/mp-sched/Makefile.am     2008-08-19 22:30:14 UTC 
(rev 9334)
+++ gnuradio/branches/features/mp-sched/Makefile.am     2008-08-19 22:42:21 UTC 
(rev 9335)
@@ -29,7 +29,8 @@
        configure-cell-cross \
        config.h.in \
        run_tests.sh.in \
-       README.hacking
+       README.hacking \
+       README.building-boost
 
 SUBDIRS = @build_dirs@
 DIST_SUBDIRS = @build_dirs@ @skipped_dirs@ @with_dirs@

Modified: gnuradio/branches/features/mp-sched/README
===================================================================
--- gnuradio/branches/features/mp-sched/README  2008-08-19 22:30:14 UTC (rev 
9334)
+++ gnuradio/branches/features/mp-sched/README  2008-08-19 22:42:21 UTC (rev 
9335)
@@ -185,14 +185,14 @@
 http://numpy.scipy.org
 http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103
 
-(6) The Boost C++ Libraries    http://www.boost.org
 
-We use the Smart Pointer library.  Most systems already have the boost
-libraries available.  In the unlikely event that yours doesn't,
-download the source and follow the build instructions.  They're
-different from the normal ./configure && make
+(6) The Boost C++ Libraries (1.35 or later)  http://www.boost.org
 
+We use Smart Pointers, the thread library and a bunch of other boost stuff.
+If your system doesn't have boost 1.35 or later, see README.building-boost
+for additional info.
 
+
 (7) cppunit 1.9.14 or later.   http://cppunit.sourceforge.net
 
 Unit testing framework for C++.

Copied: gnuradio/branches/features/mp-sched/README.building-boost (from rev 
9333, gnuradio/branches/features/mp-sched/README.building-boost-1.35)
===================================================================
--- gnuradio/branches/features/mp-sched/README.building-boost                   
        (rev 0)
+++ gnuradio/branches/features/mp-sched/README.building-boost   2008-08-19 
22:42:21 UTC (rev 9335)
@@ -0,0 +1,35 @@
+Until boost 1.35 (or later) ships with the distributions, you'll need
+to download and build it yourself.  It's not hard, and it can
+peacefully coexist with earlier versions of boost.
+
+Download the latest version of boost from boost.sourceforge.net.
+(boost_1_36_0.tar.bz2 was the latest when this was written)
+
+unpack it somewhere
+cd into the resulting directory
+
+$ cd boost_1_36_0
+
+# Pick a prefix to install it into.  I used /opt/boost_1_36_0
+
+$ BOOST_PREFIX=/opt/boost_1_36_0
+
+$ ./configure --prefix=$BOOST_PREFIX --with-libraries=thread,date_time
+$ make
+$ make install
+
+# Done!  That was easy!
+
+----------------------------------------------------------------
+
+Now, tell gnuradio where to find it:
+
+$ export LD_LIBRARY_PATH=$BOOST_PREFIX/lib
+
+$ cd <path-to-top-of-gnuradio-tree>
+$ ./bootstrap
+$ ./configure --with-boost=$BOOST_PREFIX  # plus whatever config args you 
usually use
+
+$ make && make check
+$ sudo make install
+

Deleted: gnuradio/branches/features/mp-sched/README.building-boost-1.35





reply via email to

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