mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
docs
This commit is contained in:
parent
f73d3f1a2f
commit
4111d559b4
@ -15,7 +15,7 @@ re_imp = re.compile('^(#)*?([^#=]*?)\ =\ (.*?)$', re.M)
|
||||
|
||||
class ConfigSet(object):
|
||||
"""
|
||||
A dict that honor serialization and parent relationships. The serialization format
|
||||
A copy-on-write dict with human-readable serialized format. The serialization format
|
||||
is human-readable (python-like) and performed by using eval() and repr().
|
||||
For high performance prefer pickle. Do not store functions as they are not serializable.
|
||||
|
||||
|
@ -139,14 +139,7 @@ def check_fortran_dummy_main(self, *k, **kw):
|
||||
"""
|
||||
Guess if a main function is needed by compiling a code snippet with
|
||||
the C compiler and link with the Fortran compiler
|
||||
|
||||
TODO: (DC)
|
||||
- handling dialects (F77, F90, etc... -> needs core support first)
|
||||
- fix dummy main check (AC_FC_DUMMY_MAIN vs AC_FC_MAIN)
|
||||
|
||||
TODO: what does the above mean? (ita)
|
||||
"""
|
||||
|
||||
if not self.env.CC:
|
||||
self.fatal('A c compiler is required for check_fortran_dummy_main')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user