add FAQs for users

This commit is contained in:
Radovan Bast 2015-07-27 17:53:29 +02:00
parent e4ef0c50e0
commit ffee64037f
2 changed files with 35 additions and 0 deletions

View File

@ -28,6 +28,11 @@ For developers who use Autocmake
For users of projects which use Autocmake
-----------------------------------------
.. toctree::
:maxdepth: 2
users/faq.rst
For developers/contributors to Autocmake
----------------------------------------

30
doc/users/faq.rst Normal file
View File

@ -0,0 +1,30 @@
FAQ
===
How can I specify the compiler?
-------------------------------
By default ``setup.py`` will attempt GNU compilers.
You can specify compilers manually like this::
$ python setup.py --fc=ifort --cc=icc --cxx=icpc
How can I add compiler flags?
-----------------------------
You can do this with ``--extra-fc-flags``, ``--extra-cc-flags``, or
``--extra-cxx-flags``::
$ python setup.py --fc=gfortran --extra-fc-flags='-some-exotic-flag'
How can I redefine compiler flags?
----------------------------------
If you export compiler flags using the environment variables ``FCFLAGS``,
``CFLAGS``, or ``CXXFLAGS``, respectively, then the configuration will use
those flags and neither augment them, nor redefine them.