close
Warning:
Error with navigation contributor "BrowserModule"
- Timestamp:
-
May 19, 2010, 6:14:59 PM (15 years ago)
- Author:
-
Christian Speckner
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v6
|
v7
|
|
26 | 26 | === Compiler and Shared Library search PATHs === |
27 | 27 | |
28 | | If you are using gfortran, you will have installed a version >= 4.5, which is not yet the one that came with your Linux distribution. This is not very hard to do and ''causes absolutely no harm''. Nevertheless please make sure that the environment variables |
| 28 | If you are using gfortran, you will have to locally install a version >= 4.5 as current linux distributions don't yet ship 4.5. This is not very hard to do and ''causes absolutely no harm''. However, you have to make sure that the environment is configured correctly when building and running WHIZARD: |
29 | 29 | {{{ |
30 | | PATH=<path to the gfortran-4.5 binary>:$PATH |
31 | | LD_LIBRARY_PATH=<path to the gfortran-4.5-libraries> |
| 30 | export PATH=<path to the gfortran-4.5 binary>:$PATH |
| 31 | export LD_LIBRARY_PATH=<path to the gfortran-4.5-libraries>:$LD_LIBRARY_PATH |
32 | 32 | }}} |
33 | | are set correctly. You will get strange runtime errors, if the new compiler links WHIZARD to the old compiler's runtime libraries. |
| 33 | While the soname of the gfortran runtime has not changed, some of the internal changes are crucial for the operation of WHIZARD, and you will get weird runtime errors if WHIZARD links to old compiler's runtime libraries. |
34 | 34 | |
35 | 35 | === Parallel Make and Slow Filesystems === |