Compiling in Windows

From OSUPDOCS
Jump to navigation Jump to search

Windows Using cygwin

To compile and run in Windows, you need some kind of Linux/Unix environment. The recommended option is to use cygwin and this documentation is based on its use. This process has been verified in both Windows XP, Windows Vista and Windows 7 (although you may need the latest cygwin 1.7 for Windows 7).

Installing and Setting Up cygwin

The `nairn-mpm-fea` projects run well in Windows by using the <a href="http://www.cygwin.com">cygwin</a> system. You can download this project, compile the code, run calculations, and visualize the results. First you need to set up your computer to use cygwin.


Setting up `cygwin`

The recommended approach to using `nairn-mpm-fea` in Windows is to use `cygwin` and this page gives the step-by-step process for the required setup. This process has been verified in Windows XP, Windows Vista and Windows 7 (although you may need the latest `cygwin 1.7` for Windows 7).

 # Download the <a href="http://www.cygwin.com">cygwin setup.exe</a> application and run it (to install `cygwin` or, if you already have `cygwin` installed, you still might need to install plug-ins listed below, if you do not have them already).
 # Follow the default options until you reach the "Packages" step of the `cygwin` setup wizard. In that step, expand the "Devel" category and select:
   * `g++` - the gnu c++ compiler
   * `gdb` - the gnu debugger (optional)
   * `make` - program for making files (the `NairnMPM` and `NairnFEA` binaries)
   * `Subversion` - the version control system needed to download code from `GoogleCode.com`.
 # Next, expand the "Net" category and select:
   * `openssh` - ssh command for secure remote connections (optional).
 # Finally, expand the "Editors" section and select  a command-line editer (_e.g._, `vim`). Such an editor is useful because editing `cygwin` files with Microsoft software (_e.g._, `NotePad`) can seriously corrupt files by changing line endings for Unix-style line feeds to Windows style carriage returns and line feeds.

The basic `cygwin` should now be set up. You can run it to open a `cygwin` command-line window and browse your files. By the default, all `cygwin` files will be in the folder `C:\cygwin`. Your home folder will usually be at `/home/YOURUSERNAME`. You are now ready to [Download_Project download the code].

Installing xerces

The first time you download the project, you will need to install xerces in your cygwin environment (if you already have xerces installed, you can <a href="#cygcc">skip to compiling now</a>). Although cygwin has an option to install the xerces binary, it usually has an out-dated version. You therefore will need to download the xerces source code, build it, and install it. Since revision 274 of the nairn-mpm-fea project, the code requires xerces 3.0 or newer. The procedure for xerces 3.0 or newer is:

  1. <a href="http://xerces.apache.org/xerces-c/download.cgi">Download the xerces source code</a>, which will be in a file such as xerces-c-3.x.x.tar.gz (with x being some numbers). Note that you should get the .tar.gz file instead of the .zip version because the .zip version has DOS files with carriage returns and line feeds (either in the source or inserted by Windows' zip methods) that may complicate compiliation. The .tar.gz file is also smaller.
  2. Move the downloaded file to a folder such as the root cygwin folder, which by default is at Windows path C:\cygwin\ (warning: the xerces install will fail if the path to the folder in cygwin contains any spaces; if you use the recommended root folder, the path will be "/" which has no spaces and is therefore safe).
  3. Start a cygwin shell and and extract the files with:
    cd /
    gunzip xerces-c-3.x.x.tar.gz
    tar xvf xerces-c-3.x.xtar
    where the x's are replaced by numbers in your downloaded file.
  4. Go to the new folder and configure the code with:
    cd xerces-c-3.x.x
    ./configure LDFLAGS=-no-undefined
    

    This step will prepare the xerces source code for building. Note: if you get error messages saying that $'\r'$ command is not found it means your files are DOS files rather than Unix files. Consult a Unix expert on how to fix them or go back to step 1 and get the .tar.gz file this time.

  5. When this configuring step is done, enter the commands
    cd src
    make
    This step will compile xerces and save the librarys in the xerces-c-3.x.x/.libs folder.
  6. Finally, enter the command "make install" (still in the same folder). This step will install the compiled xerces libraries and needed header files in the default locations of /usr/local/lib and /usr/local/include folders, respectively.

<a name="cygcc"></a>You are now ready to compile the nairn-mpm-fea code. In a cygwin shell, navigate to the checked out nairn-mpm-fea and proceed as follows. To compile NairnMPM use:

cd nairn-mpm-fea/NairnMPM/build
make SYSTEM=cygwin

and to compile NairnFEA use:

cd nairn-mpm-fea/NairnFEA/build
make SYSTEM=cygwin

All source code will be compiled and the executables will be installed in nairn-mpm-fea/NairnMPM/input or nairn-mpm-fea/NairnFEA/input, respectively. You can use an additional 'make install' command to copy each compiled executable to your ~/bin folder if desired.

If the command-line compile does not work, the most likely explanation is a problem with the xerces installation. You either have to install it as specified above or edit the makefile to recognize your custom installation. The process is documented in the makefile and involves editing the xercesSo and headersPath variables for your different settings. Another possible reason is a potential conflict with some cygwin/Windows combinations. If you get a linking error about undefined references to typeinfo, you have encountered a dynamic linking problem. It can be fixed by deleting the dynamic library at /usr/local/lib/libserces-c.dll.a and then use the 'make SYSTEM=cygwin' command to link again. This change will cause the code to link statically. The resulting executables will be much larger but should work fine.

Once the code is compiled, do a <a href="../running/index.html">test run</a> to verify it worked.