Differences
This shows you the differences between two versions of the page.
|
installation_linux_aed [2017/11/30 13:19] y.audouin created |
installation_linux_aed [2022/10/24 14:16] (current) b.basic |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | First you'll need to dowload the sources or a compiled version from [[http://aed.see.uwa.edu.au/research/models/AED/download.html|here]] | + | The TELEMAC-MASCARET system is only compatible with the 1.2.0 version of the AED2 library, which you can download from [[http://www.opentelemac.org/downloads/Installation%20files/Manual%20installation%20-%20Sources/aed2_1.2.tgz|here]]: |
| - | Under the tab Telemac-AED2 (The sources are not available at the moment they should be soon) | + | Uncompress the file, go to the aed2_1.2 directory and enter the following command to build AED2 as a shared library: |
| + | <box round> | ||
| + | make shared | ||
| + | </box> | ||
| - | Unzip the file and run: | + | Then, to install the library to a specific folder, e.g. $HOME/opt/aed2-1.2, you need to do the following: |
| <box round> | <box round> | ||
| - | make | + | mkdir -p ~/opt/aed2-1.2/include\\ |
| + | mkdir ~/opt/aed2-1.2/lib\\ | ||
| + | cp *.mod ~/opt/aed2-1.2/include\\ | ||
| + | cp include/* ~/opt/aed2-1.2/include\\ | ||
| + | cp libaed2.so ~/opt/aed2-1.2/lib\\ | ||
| </box> | </box> | ||
| + | |||
| + | |||