|
- Timestamp:
-
May 8, 2012, 2:58:00 PM (13 years ago)
- Author:
-
jweil
- Comment:
-
document dynamic linking option
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v9
|
v10
|
|
38 | 38 | Currently this only works with ifort & gfortran, and produces an executable which is suitable for profiling with gprof. |
39 | 39 | |
| 40 | == Static vs. Dynamic Linking == |
| 41 | |
| 42 | The GiBUU executable is usually linked statically, in order to be independent of the libraries present on a particular system (an exception is Mac OS, where static linking is not supported). Recently we added the possibility to switch to dynamic linking (e.g. for the case that static libraries are not available). This can be done via: |
| 43 | |
| 44 | {{{ |
| 45 | make STATIC=0 |
| 46 | }}} |
| 47 | |
| 48 | Unfortunately this option is not available in the 1.4.x release yet, but will be supported in a future release. |
40 | 49 | |
41 | 50 | == Floating Point Exceptions == |
|