Changes between Initial Version and Version 1 of Cross/BuildGuide

Show
Ignore:
Timestamp:
06/15/09 10:48:31 (15 years ago)
Author:
trnewman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cross/BuildGuide

    v1 v1  
     1= Building CROSS = 
     2 
     3To build and install CROSS you may either download a release tarball, or you may use the Subversion client software to check out code from our Subversion repository. 
     4 
     5To checkout the latest stable release code, enter this on the command line: 
     6{{{ 
     7$ svn co https://cornet.wireless.vt.edu/repos/vtcornet/vtcross/branches/releases/0.1 cross 
     8}}} 
     9 
     10To instead checkout the latest code from the development trunk, enter this on the command line: 
     11{{{ 
     12$ svn co https://cornet.wireless.vt.edu/repos/vtcornet/vtcross/trunk cross 
     13}}} 
     14 
     15This page assumes that you are building from code checked out from our subversion repository. If you're building from a release tarball, do not perform the {{{./bootstrap}}} step. 
     16 
     17First, ensure that you've fulfilled the dependencies specified in the top-level  
     18[source:gnuradio/trunk/README README]. 
     19Most GNU/Linux systems come with our dependencies already packaged.   
     20You may need to install them off of your install CD/DVD or over the net.  
     21See below for Operating System specific notes. 
     22 
     23To compile, there are 5 steps.  Start by cd'ing to the cross directory, then complete the  
     24following commands: 
     25 
     26{{{ 
     27$ ./bootstrap         # Do NOT perform this step if you are building from a tarball. 
     28$ ./configure 
     29$ make 
     30$ make check 
     31$ sudo make install 
     32}}} 
     33 
     34This will perform all configuration checks and select for build, test, and installation the libcross library needed to access the framework. 
     35 
     36 
     37 
     38