Differences between revisions 26 and 27
Revision 26 as of 2009-10-30 16:14:10
Size: 16373
Comment:
Revision 27 as of 2009-11-02 12:10:07
Size: 16428
Comment:
Deletions are marked like this. Additions are marked like this.
Line 188: Line 188:
 * {{{gcc4}}}, {{{gcc4-g++}}} and {{{gcc4-gfortran}}}

This page explains how to build from source:

  • Dynare (unstable version), including preprocessor and MEX files for MATLAB and Octave
  • Dynare++
  • all the associated documentation (PDF and HTML) from source

This source can be retrieved in two forms:

Note that if you use the SVN version, you will need to install more tools (see below).

The first section of this page gives general instructions, which apply to all platforms. Then some specific platforms are discussed:

  • Linux (Debian or Ubuntu)
  • Windows 32-bit, using MinGW
  • Windows 32-bit, using Cygwin
  • Windows 64-bit
  • MacOS X 10.6

/!\ Here, when we refer to 32-bit or 64-bit, we refer to the type of MATLAB installation, not the type of Windows installation. It is perfectly possible to run a 32-bit MATLAB on a 64-bit Windows: in that case, instructions for Windows 32-bit should be followed. To determine the type of your MATLAB installation, type:

>> computer

at the MATLAB prompt: if it returns PCWIN, then you have a 32-bit MATLAB; if it returns PCWIN64, then you have a 64-bit MATLAB.

For Windows users, there is no pareto-optimum between MinGW and Cygwin, it depends on what you want to do:

  • MinGW is simpler to setup if you just want to quickly compile the binaries,
  • Cygwin is recommended for those who update through SVN, or who want to build documentation.

1. General instructions

1.1. Prerequisites

A number of tools and libraries are needed in order to recompile everything. You don't necessarily need to install everything, depending on what you want to compile.

  • A POSIX compliant shell and an implementation of Make (mandatory)
  • The GNU Compiler Collection, with gcc, g++ and gfortran (mandatory)

  • MATLAB (if you want to compile MEX for MATLAB)

  • GNU Octave, with the development headers (if you want to compile MEX for Octave)

  • Boost libraries, version 1.34 or later. Actually only the Graph library is needed. (mandatory)

  • Bison, version 2.3 or later (only if you get the source through SVN)

  • Flex, version 2.5.4 or later (only if you get the source through SVN)

  • Autoconf, version 2.61 or later (only if you get the source through SVN)

  • Automake (only if you get the source through SVN)

  • CWEB, with its tools ctangle and cweave (only if you want to build Dynare++ and get the source through SVN)

  • An implementation of BLAS and LAPACK: either ATLAS, Netlib (BLAS, LAPACK) or MKL (only if you want to build Dynare++)

  • An implementation of POSIX Threads (only if you want to build Dynare++)

  • A decent LaTeX distribution (if you want to compile PDF documentation). The following extra components may be needed:
    • The Econometrica bibliography style: you need harvard and economic packages from CTAN (only if you want to build Dynare user guide)

    • Eplain TeX macros (only if you want to build Dynare++ source documentation)

    • Beamer (for some PDF presentations)

  • DBLaTeX (if you want to build Dynare reference manual in PDF)

  • xsltproc and DocBook XSL Stylesheets (if you want to build Dynare reference manual in HTML)

  • Doxygen (if you want to build Dynare preprocessor source documentation)

1.2. Preparing the sources

If you have downloaded the sources from an official source archive or the snapshot, just unpack it.

/!\ If you are using the snapshot, since it contains a build tree for Windows, you first need to clean it with:

make clean

If you want to use SVN, do the following from a terminal:

svn checkout https://www.dynare.org/svn/dynare/trunk dynare
cd dynare
autoreconf -s -i

The last line runs Autoconf and Automake in order to prepare the build environment (this is not necessary if you got the sources from an official source archive or the snapshot).

1.3. Configuring the build tree

You just launch the configure script from a terminal:

./configure

If you have MATLAB, you need to indicate both MATLAB location and MATLAB version. For example, on Linux:

./configure --with-matlab=/usr/local/matlab78 MATLAB_VERSION=7.8

Note that MATLAB version can also specified via the MATLAB family product release (R2009a, R2008b, ...).

You may need to specify additional options to the configure script, see the platform specific instructions below.

Note that if you don't want to compile with debugging information, you can specify the CFLAGS and CXXFLAGS variables to configure, such as:

./configure CFLAGS="-O3" CXXFLAGS="-O3"

If the configuration goes well, the script will tell you which components are correctly configured and will be built.

1.4. Building

Binaries are built with:

make

PDF and HTML documentation are respectively built with:

make pdf
make html

The testsuites can be run with:

make check

2. Debian or Ubuntu

All the prerequisites are packaged. If you want to build everything, install the following packages:

  • build-essential (for gcc, g++ and make)

  • octave3.2-headers or octave3.0-headers (will install ATLAS)

  • libboost-graph1.40-dev, libboost-graph1.39-dev, libboost-graph1.38-dev, libboost-graph1.37-dev, libboost-graph1.35-dev or libboost-graph-dev

  • flex

  • bison

  • autoconf

  • automake

  • texlive

  • texlive-publishers (for Econometrica bibliographic style)

  • texlive-extra-utils (for CWEB)

  • texlive-formats-extra (for Eplain)

  • latex-beamer

  • dblatex

  • xsltproc

  • docbook-xsl

  • doxygen

3. Windows 32-bit, using MinGW

The easiest way to setup a build environment for Cygwin is to install the Octave MinGW installer. Pick the latest version in the 3.2.x series (3.2.2 at the time of this writing), and install it on your machine.

Installing MinGW this way has the following advantages:

  • you get all the MinGW/MSYS tools in a single package;
  • you get a compiled version of ATLAS, for use with Dynare++;
  • you can directly compile MEX files for that version of Octave, which is the recommended one for use with Dynare.

In the remaining of this section it is assumed that you installed Octave this way, in c:/Octave/3.2.2_gcc-4.3.0/. It is probably possible to compile Dynare without this Octave/MinGW bundle, but we won't document it here.

First, from the Windows Explorer, run the MSYS.bat script located in c:/Octave/3.2.2_gcc-4.3.0/MSYS/. This should open a terminal window.

Second, download Dynare sources from the website (either the snapshot or the official sources when Dynare 4.1 is released). Using SVN is not recommended with MinGW, since you will not have all the necessary tools to rebuild some sources. Uncompress Dynare sources in your MinGW home. This directory is located in c:/Octave/3.2.2_gcc-4.3.0/MSYS/home/user (where user is your login name).

Third, download Boost sources (from http://www.boost.org) and uncompress them in your home. Let's say they are located in c:/Octave/3.2.2_gcc-4.3.0/MSYS/home/user/boost_1_40_0

Then, from the terminal, go to the directory containing Dynare sources (using the cd command).

If you got the sources with the snapshot, clean the build tree:

make clean

Then you need to adjust the path to include MinGW executables and Octave libraries:

export PATH=$PATH:/c/Octave/3.2.2_gcc-4.3.0/mingw32/bin:/c/Octave/3.2.2_gcc-4.3.0/bin

Then configure the package.

If you don't have MATLAB:

./configure CC=mingw32-gcc-4.3.0-dw2 CXX=mingw32-g++-4.3.0-dw2 F77=mingw32-gfortran-4.3.0-dw2 CPPFLAGS="-I/home/user/boost_1_40_0" LDFLAGS="-L/c/Octave/3.2.2_gcc-4.3.0/lib"

Here it is necessary to give the full name of C, C++ and Fortran 77 compilers, since they use non-standard names.

If you have MATLAB, let's say version R2009a installed in c:/Program Files/MATLAB/R2009a, do:

./configure --with-matlab=/c/Progra~1/MATLAB/R2009a MATLAB_VERSION=R2009a CC=mingw32-gcc-4.3.0-dw2 CXX=mingw32-g++-4.3.0-dw2 F77=mingw32-gfortran-4.3.0-dw2 CPPFLAGS="-I/home/user/boost_1_40_0" LDFLAGS="-L/c/Octave/3.2.2_gcc-4.3.0/lib"

/!\ Note that here we use Progra~1 (the 8.3 filename) instead of Program Files. This is because spaces in filenames confuse the configuration scripts.

Then compile Dynare and Dynare++ with:

make

4. Windows 32-bit, using Cygwin

First, you need to setup a Cygwin environment, following the instructions at http://www.cygwin.com.

Then, install the following packages:

  • make

  • gcc, gcc-g++ and gcc-g77

  • gcc-mingw, gcc-mingw-g++ and gcc-mingw-g77

  • gcc4, gcc4-g++ and gcc4-gfortran

  • bison

  • flex

  • autoconf and autoconf2.5

  • automake and automake1.11

  • octave and octave-devel (will install BLAS and LAPACK)

  • tetex and tetex-extra

  • libxslt (for xsltproc)

  • docbook-xsl

  • doxygen

  • subversion (only if you retrieve Dynare sources through SVN)

/!\ If you want to use the graphics capabilities of Octave, note that you must also install an X11 server.

The version of Boost included with Cygwin is too old. You need to download a more recent version (1.40 at the time of this writing), on http://www.boost.org.

Then uncompress the Boost sources somewhere, let's say in /home/user:

tar xvjf boost_1_40_0.tar.bz2

Note that you don't need to compile any Boost libraries; Dynare only make use of the headers.

Also note that dblatex, Econometrica biliographic style and eplain are not packaged in Cygwin: you need to install them manually if you want to build the corresponding documentation.

Now, go to the Dynare source tree from a Cygwin shell.

If you retrieved the source from SVN, don't forget to do:

autoreconf -i -s

Then, configure the package.

If you don't have MATLAB, do:

./configure CPPFLAGS="-I/home/user/boost_1_40_0"

If you have MATLAB, let's say version R2009a installed in c:/Program Files/MATLAB/R2009a, do:

./configure --with-matlab=/cygdrive/c/Progra~1/MATLAB/R2009a MATLAB_VERSION=R2009a CPPFLAGS="-I/home/user/boost_1_40_0"

/!\ Note that here we use Progra~1 (the 8.3 filename) instead of Program Files. This is because spaces in filenames confuse the configuration scripts.

Then compile everything with:

make
make pdf
make html

This should build:

  • Dynare preprocessor
  • Dynare MEX files for Octave (for use with the Octave version bundled with Cygwin)
  • Dynare MEX files for MATLAB (provided you gave the MATLAB path to configure)
  • Dynare++
  • Part of the documentation

/!\ In order to be able to run Dynare from MATLAB, you need to tell MATLAB where to find the Cygwin DLL. More precisely, you need to add c:\cygwin\bin to your execution path, otherwise Dynare will fail to run the preprocessor. There are two ways of doing it:

  • Locally from MATLAB, only for one session, by typing the following at MATLAB prompt:

>> setenv('PATH', [ getenv('PATH') ';c:\cygwin\bin' ])
  • Globally and once, by changing the global Windows settings. Go to the configuration panel, then in "System", then in "Advanced settings" tab, then "Environment Variables", and modify the variable PATH by adding ;c:\cygwin\bin at the end of it (the semicolon is the separator)

5. Windows 64-bit

Compiling the preprocessor, the MEX files for Octave and the documentation are done the same way as you would for Windows 32-bit (a 32-bit preprocessor binary is fine, and Octave distributions are all 32-bit at this time). Follow the instructions for Cygwin or MinGW (whichever you prefer), without specifying MATLAB to the configure script.

Then you need to compile the MEX files for MATLAB, which must be 64-bit. There exists a MinGW for 64-bit platforms, but at this time it is unfortunately unable to link with MATLAB libraries. So the solution is to use Miscrosoft Visual Studio C++ (MSVC, freely available).

For the installation, please follow the instructions given on Mathworks FAQ.

Then compile the MEX files by launching the script build_matlab.m available in mex/sources subdirectory of Dynare installation.

6. Mac OS X 10.6

To build Dynare on Mac OS X, follow the General Instructions above, modified as described herein.

First, if you have not done so already, download and install the latest version of Xcode. As of this writing, the latest Xcode version is 3.2.1. This contains the appropriate versions of the Bison, Flex, Autoconf and Automake

  • GFortran: from the "Alternative and experimental tools" section on AT&T Tools, download and install the GNU Fortran package for Snow Leopard. The current version is 4.2.4.

  • Octave: Until a v10.6-compatible binary is placed on the Octave website, to compile MEX for Octave, you will have to install it through Macports. Having installed MacPorts and placed /opt/local/bin and /opt/local/sbin in your search path, type the following at the command prompt:

sudo port install octave
  • This works with the default octave variant gcc43. The installation will take quite some time as MacPorts will create a fully independent directory structure in which to build and house Octave and its dependencies. It will also take approximately 1.4GB of disk space.

  • Octave: Install the latest Mac Os X binary.

  • Boost: copy the Boost Library to /usr/local/include/boost/, maintaining the directory hierarchy found in the downloaded file

  • LaTeX Distribution: Download and install MacTeX

  • DBLaTeX (version >=0.2.12): This can be obtained either through Fink or through the NetBSD link on the DBLaTeX site. Further, it requires the additional installation of DocBook XML DTD. For the DocBook installation, replace the chown command from the website's installation inscructions with

sudo chown -R root:wheel *
  • Doxygen: download the Doxygen binary distribution for Mac, install the package and place /Applications/Doxygen.app/Contents/Resources/ in your search path

  • Matlab: Call the configure script with the options --with-matlab=/Applications/MATLAB_R2008a/ MATLAB_VERSION=7.6, adjusting the path and version passed to match those of your local Matlab installation. NB: There are currently problems building MEX files for Matlab.

Finally, run

./configure CFLAGS="-m64" FFLAGS='-m64' LDFLAGS='-m64 -framework vecLib'

DynareWiki: BuildingDynareFromSource (last edited 2013-06-19 16:52:12 by HoutanBastani)