[SCons] Print options read from cantera.conf
This prevents surprises when an unexpected option value is saved in cantera.conf.
This commit is contained in:
parent
28154d847d
commit
d19d18dd77
1 changed files with 6 additions and 0 deletions
|
|
@ -638,6 +638,12 @@ for arg in ARGUMENTS:
|
|||
print 'Encountered unexpected command line argument: %r' % arg
|
||||
sys.exit(0)
|
||||
|
||||
# Print values of all build options:
|
||||
print "Configuration variables read from 'cantera.conf' and command line:"
|
||||
for line in open('cantera.conf'):
|
||||
print ' ', line.strip()
|
||||
print
|
||||
|
||||
# ********************************************
|
||||
# *** Configure system-specific properties ***
|
||||
# ********************************************
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue