summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGregory Becker <becker33@llnl.gov>2016-05-31 13:39:25 -0700
committerGregory Becker <becker33@llnl.gov>2016-05-31 13:39:25 -0700
commit817f43f92766bb37877888043eba6cecd9491f2e (patch)
tree601058bada1a0374f14aed6870990eb56046546d /lib
parent1eed2ee985ea2dfb8bce77d437728d8d7b7ad6ef (diff)
downloadspack-817f43f92766bb37877888043eba6cecd9491f2e.tar.gz
spack-817f43f92766bb37877888043eba6cecd9491f2e.tar.bz2
spack-817f43f92766bb37877888043eba6cecd9491f2e.tar.xz
spack-817f43f92766bb37877888043eba6cecd9491f2e.zip
Fixed config format to allow default compiler flags
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/config.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/spack/spack/config.py b/lib/spack/spack/config.py
index ec37bd290c..88544aa7bb 100644
--- a/lib/spack/spack/config.py
+++ b/lib/spack/spack/config.py
@@ -167,6 +167,18 @@ section_schemas = {
{'type' : 'null' }]},
'fc': { 'anyOf': [ {'type' : 'string' },
{'type' : 'null' }]},
+ 'fflags': { 'anyOf': [ {'type' : 'string' },
+ {'type' : 'null' }]},
+ 'cppflags': { 'anyOf': [ {'type' : 'string' },
+ {'type' : 'null' }]},
+ 'cflags': { 'anyOf': [ {'type' : 'string' },
+ {'type' : 'null' }]},
+ 'cxxflags': { 'anyOf': [ {'type' : 'string' },
+ {'type' : 'null' }]},
+ 'ldflags': { 'anyOf': [ {'type' : 'string' },
+ {'type' : 'null' }]},
+ 'ldlibs': { 'anyOf': [ {'type' : 'string' },
+ {'type' : 'null' }]},
},},},},},},},},
'mirrors': {