Building Dart
Contents
Building DART
Brief version
- Download (or clone / checkout) the source distribution.
- Install GNU build tools.
- (Optional) Install hmmoc.
- (Optional) Install GNU Guile.
- Run configure and then make.
- If you are on a recent Mac you will probably need to specify gcc rather than clang as the C++ compiler. Install gcc (e.g. with homebrew) then run configure with the CXX=/path/to/g++ option.
- (Optional) Run the test suite.
- Set up environment variables.
Longer version
- It is assumed that you have already downloaded (or checked out) the source distribution; see Downloading Dart for details on how to do this.
- You will need GNU tools including gcc (v4.0 or later), [GNU make make], binutils and coreutils
- See the INSTALL file in the top-level directory for more info (or type more dart/INSTALL)
- These tools come with many linux distributions, but gcc in particular, though stable in the last couple of years, has evolved by leaps & bounds in the past and may be out of date if you have an old distro
- Mac users may need to install xcode tools. See also note above about using gcc rather than clang.
- Dart will probably build under Windows, but it isn't supported. You may need Cyg Win
- (Optional) If you want to run Hand Align, you will probably want to first install Gerton Lunter's hmmoc package to compile fast dynamic programming algorithms.
- Follow the link to download and install this software.
- If you install it in /usr/local/hmmoc or /usr/local/src/hmmoc, then the configure script will find it automatically; otherwise, you will need to use the --with-hmmoc option to specify in which directory hmmoc can be found (since it does not export this via pkg-config).
- Note that the hmmoc package requires Java to run.
- (Optional) If you want to use Scheme from within dart programs (specifically xrate, whose macro language can include Scheme evaluation) then you will need to install Guile before building xrate.
- As of version 1.8.7, guile requires GMP to be installed.
- You should then download & install the latest stable release of Guile from here.
- If this all seems like too much hassle, you can probably just skip this step: most xrate grammars (as of April 2010) do not include Scheme expressions, and dart can be built without guile support.
- (Optional) Install any unsupported/experimental optional dependencies. For example, if you want to use the Beagle Library to run phylogenetic computations on CUDA devices, you will need to install that first, along with its dependencies. Currently, we have not seen much (any) speedup in dart from using this library, which may well mean that we are not using it correctly. In any case, Beagle is not supported, and it is advisable to leave out this part.
- Type the following:
- cd dart; ./configure; make
- The autoconf scripts should detect the optional dependencies (hmmoc, guile, beagle) if they are installed; if not, you can specify paths to these using --with-hmmoc, --with-guile and/or --with-beagle. Type ./configure --help for a full list of configuration options
- Note that not all aspects of the autotools are currently functional; for example, there is currently no support for compilation outside of the project source directory.
- (Optional) To run the built-in tests, type:
- make test
- Set up your environment variables (required for Window Licker and some other programs):
- You may want to set the environment variable DARTDIR to point to the root dart directory. Some of the programs require this (or, at least, they work better that way).
- To use the dart perl modules, or run many of the Dart Perl Scripts, you will need to add dart/perl to your PERL5LIB environment variable.
Dart binaries and Perl modules
Add the following lines to your .cshrc if you want to have the dart binaries in your path and use the dart perl modules in Perl scripts:
setenv DARTDIR $HOME/dart setenv PATH $DARTDIR/bin:$PATH setenv PERL5LIB $DARTDIR/perl:$PERL5LIB
Obviously the first line should point to wherever your dart tree is at. I also had to add a dummy setenv PERL5LIB line before this, to initialise the PERL5LIB variable.
If you're a bash user, you'll need to put the following in .bashrc instead:
export DARTDIR=$HOME/dart export PATH=$DARTDIR/bin:$PATH export PERL5LIB=$DARTDIR/perl
DARTDIR
Some programs in dart expect the environment variable $DARTDIR to point to the root of the dart source tree. If $DARTDIR is not defined, the default value is the path to the configure script. If this is not the correct value (for example, if dart was compiled on an NFS server but is intended to be used by client machines on that NFS), you can override it at configure-time like so: ./configure --srcdir=/nfs/path/to/dart. (This is something of an abuse of the --srcdir option; the true GNU way would be to use --prefix.)
-- Ian Holmes