diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-06-19 10:34:21 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-06-22 12:50:34 -0700 |
commit | 3653cfe6f08acc28ef9b65d8a81596119168b316 (patch) | |
tree | 5e6324a54ef25a4b0e9407fb6d05e862053074ae /var | |
parent | b6740cf1d1fe847ae0064f7d7a5be1b24dcf4779 (diff) | |
download | spack-3653cfe6f08acc28ef9b65d8a81596119168b316.tar.gz spack-3653cfe6f08acc28ef9b65d8a81596119168b316.tar.bz2 spack-3653cfe6f08acc28ef9b65d8a81596119168b316.tar.xz spack-3653cfe6f08acc28ef9b65d8a81596119168b316.zip |
Compiler support now uses configuration files.
- no more need for compiler python files.
- Default compilers are found in user's environment and added
to ~/.spackconfig automatically
- User can add new compilers by editing configuration file
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/compilers/clang@3.3.py | 4 | ||||
-rw-r--r-- | var/spack/compilers/gcc@4.5.4.py | 4 | ||||
-rw-r--r-- | var/spack/compilers/gcc@4.7.3.py | 4 | ||||
-rw-r--r-- | var/spack/compilers/gcc@4.8.1.py | 4 |
4 files changed, 0 insertions, 16 deletions
diff --git a/var/spack/compilers/clang@3.3.py b/var/spack/compilers/clang@3.3.py deleted file mode 100644 index f07ca4d6cc..0000000000 --- a/var/spack/compilers/clang@3.3.py +++ /dev/null @@ -1,4 +0,0 @@ -cc = '/usr/bin/clang' -cxx = '/usr/bin/clang++' -f77 = 'gfortran' -fc = 'gfortran' diff --git a/var/spack/compilers/gcc@4.5.4.py b/var/spack/compilers/gcc@4.5.4.py deleted file mode 100644 index 5ead666d70..0000000000 --- a/var/spack/compilers/gcc@4.5.4.py +++ /dev/null @@ -1,4 +0,0 @@ -cc = '/Users/gamblin2/macports/bin/gcc-mp-4.5' -cxx = '/Users/gamblin2/macports/bin/g++-mp-4.5' -f77 = '/Users/gamblin2/macports/bin/gfortran-mp-4.5' -fc = '/Users/gamblin2/macports/bin/gfortran-mp-4.5' diff --git a/var/spack/compilers/gcc@4.7.3.py b/var/spack/compilers/gcc@4.7.3.py deleted file mode 100644 index cdc092c8fd..0000000000 --- a/var/spack/compilers/gcc@4.7.3.py +++ /dev/null @@ -1,4 +0,0 @@ -cc = '/Users/gamblin2/macports/bin/gcc-mp-4.7' -cxx = '/Users/gamblin2/macports/bin/g++-mp-4.7' -f77 = '/Users/gamblin2/macports/bin/gfortran-mp-4.7' -fc = '/Users/gamblin2/macports/bin/gfortran-mp-4.7' diff --git a/var/spack/compilers/gcc@4.8.1.py b/var/spack/compilers/gcc@4.8.1.py deleted file mode 100644 index f041b4d11c..0000000000 --- a/var/spack/compilers/gcc@4.8.1.py +++ /dev/null @@ -1,4 +0,0 @@ -cc = '/Users/gamblin2/macports/bin/gcc-mp-4.8' -cxx = '/Users/gamblin2/macports/bin/g++-mp-4.8' -f77 = '/Users/gamblin2/macports/bin/gfortran-mp-4.8' -fc = '/Users/gamblin2/macports/bin/gfortran-mp-4.8' |