summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-04-07 10:29:07 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2015-04-07 22:21:19 -0700
commit203fd861aa1ab3d29477fa9954717ad46890801f (patch)
tree5eef0210dc4acd3cda5ef023459b5b7421baec3e /bin
parent37a5c3b09f9132b1f9ec60ce5089040a183f40d4 (diff)
downloadspack-203fd861aa1ab3d29477fa9954717ad46890801f.tar.gz
spack-203fd861aa1ab3d29477fa9954717ad46890801f.tar.bz2
spack-203fd861aa1ab3d29477fa9954717ad46890801f.tar.xz
spack-203fd861aa1ab3d29477fa9954717ad46890801f.zip
Allow spack install -j to throttle make jobs.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spack10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/spack b/bin/spack
index c49caf37f9..013acf4db8 100755
--- a/bin/spack
+++ b/bin/spack
@@ -56,18 +56,18 @@ from external import argparse
# Command parsing
parser = argparse.ArgumentParser(
description='Spack: the Supercomputing PACKage Manager.')
-parser.add_argument('-V', '--version', action='version',
- version="%s" % spack.spack_version)
-parser.add_argument('-v', '--verbose', action='store_true',
- help="Print additional output during builds")
parser.add_argument('-d', '--debug', action='store_true',
help="Write out debug logs during compile")
parser.add_argument('-k', '--insecure', action='store_true',
- help="Do not check ssl certificates when downloading archives.")
+ help="Do not check ssl certificates when downloading.")
parser.add_argument('-m', '--mock', action='store_true',
help="Use mock packages instead of real ones.")
parser.add_argument('-p', '--profile', action='store_true',
help="Profile execution using cProfile.")
+parser.add_argument('-v', '--verbose', action='store_true',
+ help="Print additional output during builds")
+parser.add_argument('-V', '--version', action='version',
+ version="%s" % spack.spack_version)
# each command module implements a parser() function, to which we pass its
# subparser for setup.