diff options
author | Matthew LeGendre <legendre1@llnl.gov> | 2014-03-14 11:22:09 -0700 |
---|---|---|
committer | Matthew LeGendre <legendre1@llnl.gov> | 2014-03-14 11:22:09 -0700 |
commit | 40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf (patch) | |
tree | 82ef7d4406728879ec864ed69604375ffa6ced84 | |
parent | 03ee31e0e8cf7c58eb4aafc6912e698c0a23427e (diff) | |
download | spack-40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf.tar.gz spack-40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf.tar.bz2 spack-40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf.tar.xz spack-40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf.zip |
Fix issue when compiler wrappers ran gcc -V
-rwxr-xr-x | lib/spack/env/cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/spack/env/cc b/lib/spack/env/cc index 0245e06531..47a5bcf900 100755 --- a/lib/spack/env/cc +++ b/lib/spack/env/cc @@ -28,7 +28,7 @@ spack_env_path = get_path("SPACK_ENV_PATH") # Figure out what type of operation we're doing command = os.path.basename(sys.argv[0]) -cpp, cc, ccld, ld = range(4) +cpp, cc, ccld, ld, version_check = range(5) if command == 'cpp': mode = cpp elif command == 'ld': @@ -40,6 +40,9 @@ elif '-c' in sys.argv: else: mode = ccld +if '-V' in sys.argv or '-v' in sys.argv or '--version' in sys.argv: + mode = version_check + # Parse out the includes, libs, etc. so we can adjust them if need be. parser = argparse.ArgumentParser(add_help=False) parser.add_argument("-I", action='append', default=[], dest='include_path') |