diff options
author | Peter Carbonetto | 2017-05-25 22:36:47 -0500 |
---|---|---|
committer | Peter Carbonetto | 2017-05-25 22:36:47 -0500 |
commit | 5d26ca0f8a4bb3da47ed94f26038f7c92dd46b97 (patch) | |
tree | 261ca2d1bab918860e8ae7ae0b6de22166e3a20d /README.md | |
parent | 40e338ab5d1754f36b6a12b6f29eee74792e3b3e (diff) | |
download | pangemma-5d26ca0f8a4bb3da47ed94f26038f7c92dd46b97.tar.gz |
A few more small adjustments to installation instructions in README.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -123,17 +123,19 @@ file appropriate for your platform: gemma.linux.gz or gemma.macosx.gz. 2. Run `gunzip gemma.linux.gz` or `gunzip gemma.linux.gz` to decompress the file. -3. The binaries we provide are linked to static versions of the GSL, -LAPACK and BLAS libraries. However, since the program dynamically -links to standard system libraries and libraries included with the C++ -compiler, *you need to make sure that you have installed on your +3. For convenience, the binaries we provide are linked to static +versions of the GSL, LAPACK and BLAS libraries. So you do not need to +install these libraries. + +4. Cince the program dynamically links to standard C++ and system +libraries, *you need to make sure that you have installed on your system the same C++ compiler that was used to build the program.* For example, `gemma.linux` was built using `gcc 4.8.5`, so you should have `gcc 4.8.x`. If the libraries are installed somewhere non-standard, you can tell where GEMMA can find the libraries by setting the -`LD_LIBRARY_PATH` environment variable. If you have the wrong C++ -compiler version, or the libraries are in a place where GEMMA cannot -find them, then the program will complain about dynamic linking +`LD_LIBRARY_PATH` environment variable. If you have the wrong version +of the C++ compiler, or if the libraries are in a place where GEMMA +cannot find them, then the program will complain about dynamic linking errors. ### Building the binaries from source |