Changes between Version 1 and Version 2 of MoabFaq

Show
Ignore:
Timestamp:
07/03/07 17:09:38 (2 years ago)
Author:
anonymous (IP: 128.104.186.21)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MoabFaq

    v1 v2  
    1 == How do I build MOAB from scratch? == 
     1== MOAB Frequently Asked Questions == 
    22 
    3 1. Grab the code straight from the repository using [http://subversion.tigris.org/ Subversion], from the repository at 
    4   [https://svn.mcs.anl.gov/repos/ITAPS/MOAB/trunk].   
     3Frequently asked questions about MOAB.  Feel free to add new ones if you like, but please follow the formatting conventions I use below. 
     4Or, send me your questions (and answers, if you're nice) and I'll add them. 
    55 
    6 2. Follow the directions in the README.CONFIGURE file in the top-level source directory to build the configure script you'll need.  NOTE: MOAB 
    7 relies on the autotools (autoconf, libtool, automake) that come with most LINUX/UNIX distributions.  If they're not part of your OS, or you're getting 
    8 mysterious autotools errors, you might want to try downloading/building more recent versions of those packages then trying again. 
     6[http://trac.mcs.anl.gov/projects/ITAPS/wiki/MoabFromScratch How do I build MOAB from scratch?] 
    97 
    10 OR: 
    11  
    12 1. Grab one of the distribution files I will put eventually on the [http://trac.mcs.anl.gov/projects/ITAPS/wiki/MOAB MOAB web site] at Argonne. 
    13  
    14 2. Unpack the tarball. 
    15  
    16  
    17 THEN 
    18  
    19 3. In the top-level source directory (the one below which are geom/ and util/), run the configure script, with the various options you want.  To get 
    20 a list of options, run ./configure --help. 
    21  
    22 4. Run make, then make install.  This will install the MOAB include files, libraries, and binaries in include/, lib/, and bin/ subdirectories below the prefix directory 
    23 input to the configure script (which is /usr/local by default). 
    24  
    25 That's it!