diff options
author | Matthew LeGendre <legendre1@llnl.gov> | 2014-03-14 11:33:37 -0700 |
---|---|---|
committer | Matthew LeGendre <legendre1@llnl.gov> | 2014-03-14 11:33:37 -0700 |
commit | 6147d52f2d4dbb5ec111736eabf05660be6c2cdd (patch) | |
tree | 24c69349bc679db7ebbe14911c0f66a810990991 | |
parent | 008d7a316216ab086aa8954854a125c66f094d46 (diff) | |
parent | 40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf (diff) | |
download | spack-6147d52f2d4dbb5ec111736eabf05660be6c2cdd.tar.gz spack-6147d52f2d4dbb5ec111736eabf05660be6c2cdd.tar.bz2 spack-6147d52f2d4dbb5ec111736eabf05660be6c2cdd.tar.xz spack-6147d52f2d4dbb5ec111736eabf05660be6c2cdd.zip |
Merge branch 'version_opt' into spindle
-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') |