forked from marbl-ecosys/MARBL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation updates following MARBL meeting
I also updated the python environment that RTD will use to build the documentation (using the latest version of the RTD default theme, etc).
- Loading branch information
1 parent
db09f40
commit 85e672a
Showing
7 changed files
with
82 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--------------------------------------------- | ||
| INSTALLING THE LIBRARY FOR EXTERNAL USAGE | | ||
--------------------------------------------- | ||
|
||
The Makefile in src/ provides all that is needed to build the library. For | ||
testing purposes, you can run | ||
|
||
$ make [gnu|intel|pgi|nag|cray] | ||
|
||
to build with a specific compiler using pre-set compiler flags. However, if | ||
you want to build MARBL to link with an outside program, you may want more | ||
control over the compile-time options. To that end, run | ||
|
||
$ make OBJ_DIR=[location of object files] depends | ||
$ make [desired_location_of_lib]/libmarbl.a \ | ||
USE_DEPS=TRUE \ | ||
FC=[compiler] \ | ||
FCFLAGS="[compiler flags]" \ | ||
OBJ_DIR=[location of object files] \ | ||
INC_DIR=[location of .mod files] | ||
|
||
The first call will produce the dependency file (shared_deps.d), the second call | ||
will build libmarbl.a and the *.mod files. When building the GCM, you will need | ||
to add | ||
|
||
-I$(INC_DIR) | ||
|
||
And when linking | ||
|
||
-L$(LIB_DIR) -lmarbl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,35 @@ | ||
alabaster==0.7.9 | ||
Babel==2.3.4 | ||
docutils==0.13.1 | ||
imagesize==0.7.1 | ||
Jinja2==2.9.4 | ||
latexcodec==1.0.4 | ||
MarkupSafe==0.23 | ||
alabaster==0.7.10 | ||
asn1crypto==0.24.0 | ||
Babel==2.6.0 | ||
certifi==2018.4.16 | ||
cffi==1.11.5 | ||
chardet==3.0.4 | ||
cryptography==2.2.2 | ||
docutils==0.14 | ||
enum34==1.1.6 | ||
idna==2.6 | ||
imagesize==1.0.0 | ||
ipaddress==1.0.22 | ||
Jinja2==2.10 | ||
latexcodec==1.0.5 | ||
MarkupSafe==1.0 | ||
oset==0.1.3 | ||
packaging==17.1 | ||
pybtex==0.21 | ||
pybtex-docutils==0.2.1 | ||
Pygments==2.1.3 | ||
pycparser==2.18 | ||
Pygments==2.2.0 | ||
pyOpenSSL==18.0.0 | ||
pyparsing==2.2.0 | ||
pytz==2016.10 | ||
PySocks==1.6.8 | ||
pytz==2018.4 | ||
PyYAML==3.12 | ||
requests==2.12.4 | ||
six==1.10.0 | ||
requests==2.18.4 | ||
six==1.11.0 | ||
snowballstemmer==1.2.1 | ||
Sphinx==1.7.4 | ||
sphinx-rtd-theme==0.1.9 | ||
Sphinx==1.7.5 | ||
sphinx-rtd-theme==0.3.1 | ||
sphinxcontrib-bibtex==0.4.0 | ||
sphinxcontrib-websupport==1.0.1 | ||
sphinxcontrib-websupport==1.1.0 | ||
typing==3.6.4 | ||
urllib3==1.22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters