JWS-112 Bumping version of ClustalO (src, binaries and windows) to version 1.2.4.
[jabaws.git] / binaries / windows / clustalo / INSTALL
1 The impatient can try:
2
3 $ ./configure
4 $ make
5 $ make install
6
7
8 Clustal-Omega needs argtable2 (http://argtable.sourceforge.net/). If
9 argtable2 is installed in a non-standard directory you might have to
10 point configure to its installation directory. For example, if you are
11 on a Mac and have argtable installed via MacPorts then you should use
12 the following command line:
13
14 $ ./configure CFLAGS='-I/opt/local/include' LDFLAGS='-L/opt/local/lib'
15
16 ClustalO will automatically support multi-threading if your compiler
17 supports OpenMP. For some reason automake's OpenMP detection for
18 Apple's gcc is broken. You can force OpenMP detection by calling configure 
19 like so:
20
21 $ ./configure OPENMP_CFLAGS='-fopenmp' CFLAGS='-DHAVE_OPENMP'
22
23 You could use a non-Apple gcc installed via MacPorts, adding
24
25 CC=/opt/local/bin/gcc-mp-4.5
26
27 to the configure call (you will have to change the exact string to match
28 your gcc version).
29
30 See below for generic installation instructions:
31
32 ----------------------------------------------------------------------
33
34
35
36 Installation Instructions
37 *************************
38
39 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
40 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
41
42    Copying and distribution of this file, with or without modification,
43 are permitted in any medium without royalty provided the copyright
44 notice and this notice are preserved.  This file is offered as-is,
45 without warranty of any kind.
46
47 Basic Installation
48 ==================
49
50    Briefly, the shell commands `./configure; make; make install' should
51 configure, build, and install this package.  The following
52 more-detailed instructions are generic; see the `README' file for
53 instructions specific to this package.  Some packages provide this
54 `INSTALL' file but do not implement all of the features documented
55 below.  The lack of an optional feature in a given package is not
56 necessarily a bug.  More recommendations for GNU packages can be found
57 in *note Makefile Conventions: (standards)Makefile Conventions.
58
59    The `configure' shell script attempts to guess correct values for
60 various system-dependent variables used during compilation.  It uses
61 those values to create a `Makefile' in each directory of the package.
62 It may also create one or more `.h' files containing system-dependent
63 definitions.  Finally, it creates a shell script `config.status' that
64 you can run in the future to recreate the current configuration, and a
65 file `config.log' containing compiler output (useful mainly for
66 debugging `configure').
67
68    It can also use an optional file (typically called `config.cache'
69 and enabled with `--cache-file=config.cache' or simply `-C') that saves
70 the results of its tests to speed up reconfiguring.  Caching is
71 disabled by default to prevent problems with accidental use of stale
72 cache files.
73
74    If you need to do unusual things to compile the package, please try
75 to figure out how `configure' could check whether to do them, and mail
76 diffs or instructions to the address given in the `README' so they can
77 be considered for the next release.  If you are using the cache, and at
78 some point `config.cache' contains results you don't want to keep, you
79 may remove or edit it.
80
81    The file `configure.ac' (or `configure.in') is used to create
82 `configure' by a program called `autoconf'.  You need `configure.ac' if
83 you want to change it or regenerate `configure' using a newer version
84 of `autoconf'.
85
86    The simplest way to compile this package is:
87
88   1. `cd' to the directory containing the package's source code and type
89      `./configure' to configure the package for your system.
90
91      Running `configure' might take a while.  While running, it prints
92      some messages telling which features it is checking for.
93
94   2. Type `make' to compile the package.
95
96   3. Optionally, type `make check' to run any self-tests that come with
97      the package, generally using the just-built uninstalled binaries.
98
99   4. Type `make install' to install the programs and any data files and
100      documentation.  When installing into a prefix owned by root, it is
101      recommended that the package be configured and built as a regular
102      user, and only the `make install' phase executed with root
103      privileges.
104
105   5. Optionally, type `make installcheck' to repeat any self-tests, but
106      this time using the binaries in their final installed location.
107      This target does not install anything.  Running this target as a
108      regular user, particularly if the prior `make install' required
109      root privileges, verifies that the installation completed
110      correctly.
111
112   6. You can remove the program binaries and object files from the
113      source code directory by typing `make clean'.  To also remove the
114      files that `configure' created (so you can compile the package for
115      a different kind of computer), type `make distclean'.  There is
116      also a `make maintainer-clean' target, but that is intended mainly
117      for the package's developers.  If you use it, you may have to get
118      all sorts of other programs in order to regenerate files that came
119      with the distribution.
120
121   7. Often, you can also type `make uninstall' to remove the installed
122      files again.  In practice, not all packages have tested that
123      uninstallation works correctly, even though it is required by the
124      GNU Coding Standards.
125
126   8. Some packages, particularly those that use Automake, provide `make
127      distcheck', which can by used by developers to test that all other
128      targets like `make install' and `make uninstall' work correctly.
129      This target is generally not run by end users.
130
131 Compilers and Options
132 =====================
133
134    Some systems require unusual options for compilation or linking that
135 the `configure' script does not know about.  Run `./configure --help'
136 for details on some of the pertinent environment variables.
137
138    You can give `configure' initial values for configuration parameters
139 by setting variables in the command line or in the environment.  Here
140 is an example:
141
142      ./configure CC=c99 CFLAGS=-g LIBS=-lposix
143
144    *Note Defining Variables::, for more details.
145
146 Compiling For Multiple Architectures
147 ====================================
148
149    You can compile the package for more than one kind of computer at the
150 same time, by placing the object files for each architecture in their
151 own directory.  To do this, you can use GNU `make'.  `cd' to the
152 directory where you want the object files and executables to go and run
153 the `configure' script.  `configure' automatically checks for the
154 source code in the directory that `configure' is in and in `..'.  This
155 is known as a "VPATH" build.
156
157    With a non-GNU `make', it is safer to compile the package for one
158 architecture at a time in the source code directory.  After you have
159 installed the package for one architecture, use `make distclean' before
160 reconfiguring for another architecture.
161
162    On MacOS X 10.5 and later systems, you can create libraries and
163 executables that work on multiple system types--known as "fat" or
164 "universal" binaries--by specifying multiple `-arch' options to the
165 compiler but only a single `-arch' option to the preprocessor.  Like
166 this:
167
168      ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
169                  CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
170                  CPP="gcc -E" CXXCPP="g++ -E"
171
172    This is not guaranteed to produce working output in all cases, you
173 may have to build one architecture at a time and combine the results
174 using the `lipo' tool if you have problems.
175
176 Installation Names
177 ==================
178
179    By default, `make install' installs the package's commands under
180 `/usr/local/bin', include files under `/usr/local/include', etc.  You
181 can specify an installation prefix other than `/usr/local' by giving
182 `configure' the option `--prefix=PREFIX', where PREFIX must be an
183 absolute file name.
184
185    You can specify separate installation prefixes for
186 architecture-specific files and architecture-independent files.  If you
187 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
188 PREFIX as the prefix for installing programs and libraries.
189 Documentation and other data files still use the regular prefix.
190
191    In addition, if you use an unusual directory layout you can give
192 options like `--bindir=DIR' to specify different values for particular
193 kinds of files.  Run `configure --help' for a list of the directories
194 you can set and what kinds of files go in them.  In general, the
195 default for these options is expressed in terms of `${prefix}', so that
196 specifying just `--prefix' will affect all of the other directory
197 specifications that were not explicitly provided.
198
199    The most portable way to affect installation locations is to pass the
200 correct locations to `configure'; however, many packages provide one or
201 both of the following shortcuts of passing variable assignments to the
202 `make install' command line to change installation locations without
203 having to reconfigure or recompile.
204
205    The first method involves providing an override variable for each
206 affected directory.  For example, `make install
207 prefix=/alternate/directory' will choose an alternate location for all
208 directory configuration variables that were expressed in terms of
209 `${prefix}'.  Any directories that were specified during `configure',
210 but not in terms of `${prefix}', must each be overridden at install
211 time for the entire installation to be relocated.  The approach of
212 makefile variable overrides for each directory variable is required by
213 the GNU Coding Standards, and ideally causes no recompilation.
214 However, some platforms have known limitations with the semantics of
215 shared libraries that end up requiring recompilation when using this
216 method, particularly noticeable in packages that use GNU Libtool.
217
218    The second method involves providing the `DESTDIR' variable.  For
219 example, `make install DESTDIR=/alternate/directory' will prepend
220 `/alternate/directory' before all installation names.  The approach of
221 `DESTDIR' overrides is not required by the GNU Coding Standards, and
222 does not work on platforms that have drive letters.  On the other hand,
223 it does better at avoiding recompilation issues, and works well even
224 when some directory options were not specified in terms of `${prefix}'
225 at `configure' time.
226
227 Optional Features
228 =================
229
230    If the package supports it, you can cause programs to be installed
231 with an extra prefix or suffix on their names by giving `configure' the
232 option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
233
234    Some packages pay attention to `--enable-FEATURE' options to
235 `configure', where FEATURE indicates an optional part of the package.
236 They may also pay attention to `--with-PACKAGE' options, where PACKAGE
237 is something like `gnu-as' or `x' (for the X Window System).  The
238 `README' should mention any `--enable-' and `--with-' options that the
239 package recognizes.
240
241    For packages that use the X Window System, `configure' can usually
242 find the X include and library files automatically, but if it doesn't,
243 you can use the `configure' options `--x-includes=DIR' and
244 `--x-libraries=DIR' to specify their locations.
245
246    Some packages offer the ability to configure how verbose the
247 execution of `make' will be.  For these packages, running `./configure
248 --enable-silent-rules' sets the default to minimal output, which can be
249 overridden with `make V=1'; while running `./configure
250 --disable-silent-rules' sets the default to verbose, which can be
251 overridden with `make V=0'.
252
253 Particular systems
254 ==================
255
256    On HP-UX, the default C compiler is not ANSI C compatible.  If GNU
257 CC is not installed, it is recommended to use the following options in
258 order to use an ANSI C compiler:
259
260      ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
261
262 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
263
264    On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
265 parse its `<wchar.h>' header file.  The option `-nodtk' can be used as
266 a workaround.  If GNU CC is not installed, it is therefore recommended
267 to try
268
269      ./configure CC="cc"
270
271 and if that doesn't work, try
272
273      ./configure CC="cc -nodtk"
274
275    On Solaris, don't put `/usr/ucb' early in your `PATH'.  This
276 directory contains several dysfunctional programs; working variants of
277 these programs are available in `/usr/bin'.  So, if you need `/usr/ucb'
278 in your `PATH', put it _after_ `/usr/bin'.
279
280    On Haiku, software installed for all users goes in `/boot/common',
281 not `/usr/local'.  It is recommended to use the following options:
282
283      ./configure --prefix=/boot/common
284
285
286    On Windows do 
287
288         1. Preparation
289
290         1.1. Install free MinGW64 on Windows 7.  Download
291         mingw-w64-bin_x86_64-mingw_20111101_sezero.zip from
292         http://sourceforge.net/projects/mingw-w64/files/Toolchains
293         targetting Win64/Personal Builds/sezero_4.5_20111101/, extract
294         it, move mingw64 folder to C:\ and rename it to mingw. MinGW64
295         provides tools to develop 64-bit Windows applications using
296         gcc and g++. With MinGW64, some software developed for Linux
297         platform can be built on Windows.
298
299         1.2. There is a file named pthreads-w64.zip in C:\mingw
300         folder. Extract it under C:\mingw folder.
301
302         1.3. Download MSYS-1.0.11.exe from
303         http://sourceforge.net/projects/mingw/files/MSYS/Base/msys-core/msys-1.0.11/
304         and install it.
305
306         1.4. Download Clustal Omega source from
307         http://www.clustal.org/omega/clustal-omega-x.x.x.tar.gz (where
308         x.x.x is the current version)
309
310         1.5. Copy downloaded file to MSYS.  If you installed MSYS in
311         C:\msys and your account is Administrator, copy it to
312         C:\msys\1.0\home\Administrator. You can do it using Windows
313         explorer.
314
315         1.6. Download argtable2-13.tar.gz from
316         http://argtable.sourceforge.net/ and copy it to MSYS. This is
317         required by Clustal Omega.
318
319         2. Configuration and Build process
320
321         2.1. Launch MSYS and extract argtable2 source as tar xfz
322         argtable2-13.tar.gz.
323
324         2.2. Extract Clustal Omega source as tar xfz
325         clustal-omega-1.2.0.tar.gz.
326
327         2.3. cd argtable2-13; ./configure; make; make install
328
329         2.4. cd ~/clustal-omega-1.2.0
330
331         2.5. ./configure CFLAGS='-I/usr/local/include
332         -DSRE_STRICT_ANSI' LDFLAGS='-L/usr/local/lib'
333
334         2.6. make; make install
335
336         2.7. You can find clustalo.exe in /usr/local/bin folder which
337         is C:\msys\1.0\local/bin.
338
339         2.8. Following DLLs are necessary to run clustalo.exe.  Put
340         them in the same folder where clustalo.exe
341         exists. C:\mingw\bin\libcc_sjlj-1.dll,
342         C:\mingw\bin\libgomp-1.dll, C:\mingw\bin\libstdc++-6.dll,
343         C:\mingw\bin\pthreadGC2-w64.dll
344
345         (lifted from
346    http://www.blaststation.com/freestuff/en/howtoBuildx64ClustalO.php,
347    as of 2014-10-14)
348
349 Specifying the System Type
350 ==========================
351
352    There may be some features `configure' cannot figure out
353 automatically, but needs to determine by the type of machine the package
354 will run on.  Usually, assuming the package is built to be run on the
355 _same_ architectures, `configure' can figure that out, but if it prints
356 a message saying it cannot guess the machine type, give it the
357 `--build=TYPE' option.  TYPE can either be a short name for the system
358 type, such as `sun4', or a canonical name which has the form:
359
360      CPU-COMPANY-SYSTEM
361
362 where SYSTEM can have one of these forms:
363
364      OS
365      KERNEL-OS
366
367    See the file `config.sub' for the possible values of each field.  If
368 `config.sub' isn't included in this package, then this package doesn't
369 need to know the machine type.
370
371    If you are _building_ compiler tools for cross-compiling, you should
372 use the option `--target=TYPE' to select the type of system they will
373 produce code for.
374
375    If you want to _use_ a cross compiler, that generates code for a
376 platform different from the build platform, you should specify the
377 "host" platform (i.e., that on which the generated programs will
378 eventually be run) with `--host=TYPE'.
379
380 Sharing Defaults
381 ================
382
383    If you want to set default values for `configure' scripts to share,
384 you can create a site shell script called `config.site' that gives
385 default values for variables like `CC', `cache_file', and `prefix'.
386 `configure' looks for `PREFIX/share/config.site' if it exists, then
387 `PREFIX/etc/config.site' if it exists.  Or, you can set the
388 `CONFIG_SITE' environment variable to the location of the site script.
389 A warning: not all `configure' scripts look for a site script.
390
391 Defining Variables
392 ==================
393
394    Variables not defined in a site shell script can be set in the
395 environment passed to `configure'.  However, some packages may run
396 configure again during the build, and the customized values of these
397 variables may be lost.  In order to avoid this problem, you should set
398 them in the `configure' command line, using `VAR=value'.  For example:
399
400      ./configure CC=/usr/local2/bin/gcc
401
402 causes the specified `gcc' to be used as the C compiler (unless it is
403 overridden in the site shell script).
404
405 Unfortunately, this technique does not work for `CONFIG_SHELL' due to
406 an Autoconf bug.  Until the bug is fixed you can use this workaround:
407
408      CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
409
410 `configure' Invocation
411 ======================
412
413    `configure' recognizes the following options to control how it
414 operates.
415
416 `--help'
417 `-h'
418      Print a summary of all of the options to `configure', and exit.
419
420 `--help=short'
421 `--help=recursive'
422      Print a summary of the options unique to this package's
423      `configure', and exit.  The `short' variant lists options used
424      only in the top level, while the `recursive' variant lists options
425      also present in any nested packages.
426
427 `--version'
428 `-V'
429      Print the version of Autoconf used to generate the `configure'
430      script, and exit.
431
432 `--cache-file=FILE'
433      Enable the cache: use and save the results of the tests in FILE,
434      traditionally `config.cache'.  FILE defaults to `/dev/null' to
435      disable caching.
436
437 `--config-cache'
438 `-C'
439      Alias for `--cache-file=config.cache'.
440
441 `--quiet'
442 `--silent'
443 `-q'
444      Do not print messages saying which checks are being made.  To
445      suppress all normal output, redirect it to `/dev/null' (any error
446      messages will still be shown).
447
448 `--srcdir=DIR'
449      Look for the package's source code in directory DIR.  Usually
450      `configure' can determine that directory automatically.
451
452 `--prefix=DIR'
453      Use DIR as the installation prefix.  *note Installation Names::
454      for more details, including other options available for fine-tuning
455      the installation locations.
456
457 `--no-create'
458 `-n'
459      Run the configure checks, but stop before creating any output
460      files.
461
462 `configure' also accepts some other, not widely useful, options.  Run
463 `configure --help' for more details.
464