diff options
author | Greg Becker <becker33@llnl.gov> | 2019-03-07 17:30:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 17:30:48 -0800 |
commit | f4d4322a41acb41c43fd318d3dac67ef296b41b4 (patch) | |
tree | 98bcdce4eb8dacec0e77893c3d46cdca77fac225 /etc | |
parent | 0d07dea2eb1e32157c3ae58a5514bcd46e2d32ac (diff) | |
download | spack-f4d4322a41acb41c43fd318d3dac67ef296b41b4.tar.gz spack-f4d4322a41acb41c43fd318d3dac67ef296b41b4.tar.bz2 spack-f4d4322a41acb41c43fd318d3dac67ef296b41b4.tar.xz spack-f4d4322a41acb41c43fd318d3dac67ef296b41b4.zip |
Create option to build compilers as needed (#10761)
* Create option to build missing compilers and add them to config before installing packages that use them
* Clean up kwarg passing for do_install, put compiler bootstrapping in separate method
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/config.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/spack/defaults/config.yaml b/etc/spack/defaults/config.yaml index 8ccf7db535..6e8c1905e8 100644 --- a/etc/spack/defaults/config.yaml +++ b/etc/spack/defaults/config.yaml @@ -66,6 +66,12 @@ config: verify_ssl: true + # If set to true, Spack will attempt to build any compiler on the spec + # that is not already available. If set to False, Spack will only use + # compilers already configured in compilers.yaml + install_missing_compilers: False + + # If set to true, Spack will always check checksums after downloading # archives. If false, Spack skips the checksum step. checksum: true |