YAML config files for compilers and mirrors

This commit is contained in:
Matthew LeGendre
2015-05-18 15:19:20 -07:00
committed by Todd Gamblin
parent cd1ca36488
commit 46b91ddf57
12 changed files with 358 additions and 504 deletions

View File

@@ -1,12 +0,0 @@
[compiler "gcc@4.5.0"]
cc = /path/to/gcc
cxx = /path/to/g++
f77 = /path/to/gfortran
fc = /path/to/gfortran
[compiler "clang@3.3"]
cc = /path/to/clang
cxx = /path/to/clang++
f77 = None
fc = None

View File

@@ -0,0 +1,12 @@
compilers:
all:
clang@3.3:
cc: /path/to/clang
cxx: /path/to/clang++
f77: None
fc: None
gcc@4.5.0:
cc: /path/to/gcc
cxx: /path/to/g++
f77: /path/to/gfortran
fc: /path/to/gfortran