From 40cda9fa9cb1fe89f85ccd7cd56f0d98e403c5bf Mon Sep 17 00:00:00 2001 From: Matthew LeGendre Date: Fri, 14 Mar 2014 11:22:09 -0700 Subject: Fix issue when compiler wrappers ran gcc -V --- lib/spack/env/cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') 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') -- cgit v1.2.3-60-g2f50