]> git.ipfire.org Git - people/ms/u-boot.git/blame - tools/buildman/cmdline.py
buildman: add option -E for treating compiler warnings as errors
[people/ms/u-boot.git] / tools / buildman / cmdline.py
CommitLineData
d3d5c123
SG
1#
2# Copyright (c) 2014 Google, Inc
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
7from optparse import OptionParser
8
9def ParseArgs():
10 """Parse command line arguments from sys.argv[]
11
12 Returns:
13 tuple containing:
14 options: command line options
15 args: command lin arguments
16 """
17 parser = OptionParser()
18 parser.add_option('-b', '--branch', type='string',
843312dc 19 help='Branch name to build, or range of commits to build')
d3d5c123
SG
20 parser.add_option('-B', '--bloat', dest='show_bloat',
21 action='store_true', default=False,
22 help='Show changes in function code size for each board')
23 parser.add_option('-c', '--count', dest='count', type='int',
24 default=-1, help='Run build on the top n commits')
25 parser.add_option('-C', '--force-reconfig', dest='force_reconfig',
26 action='store_true', default=False,
27 help='Reconfigure for every commit (disable incremental build)')
28 parser.add_option('-d', '--detail', dest='show_detail',
29 action='store_true', default=False,
30 help='Show detailed information for each board in summary')
b50113f3
SG
31 parser.add_option('-D', '--config-only', action='store_true', default=False,
32 help="Don't build, just configure each commit")
d3d5c123
SG
33 parser.add_option('-e', '--show_errors', action='store_true',
34 default=False, help='Show errors and warnings')
2371d1bc
DS
35 parser.add_option('-E', '--warnings-as-errors', action='store_true',
36 default=False, help='Treat all compiler warnings as errors')
d3d5c123
SG
37 parser.add_option('-f', '--force-build', dest='force_build',
38 action='store_true', default=False,
39 help='Force build of boards even if already built')
40 parser.add_option('-F', '--force-build-failures', dest='force_build_failures',
41 action='store_true', default=False,
42 help='Force build of previously-failed build')
827e37b5
SG
43 parser.add_option('--fetch-arch', type='string',
44 help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)."
45 ' You can also fetch several toolchains separate by comma, or'
46 " 'all' to download all")
d3d5c123
SG
47 parser.add_option('-g', '--git', type='string',
48 help='Git repo containing branch to build', default='.')
49 parser.add_option('-G', '--config-file', type='string',
50 help='Path to buildman config file', default='')
51 parser.add_option('-H', '--full-help', action='store_true', dest='full_help',
52 default=False, help='Display the README file')
53 parser.add_option('-i', '--in-tree', dest='in_tree',
54 action='store_true', default=False,
55 help='Build in the source tree instead of a separate directory')
f79f1e0c
SW
56 parser.add_option('-I', '--incremental', action='store_true',
57 default=False, help='Do not run make mrproper (when reconfiguring)')
d3d5c123
SG
58 parser.add_option('-j', '--jobs', dest='jobs', type='int',
59 default=None, help='Number of jobs to run at once (passed to make)')
60 parser.add_option('-k', '--keep-outputs', action='store_true',
61 default=False, help='Keep all build output files (e.g. binaries)')
843312dc
SG
62 parser.add_option('-K', '--show-config', action='store_true',
63 default=False, help='Show configuration changes in summary (both board config files and Kconfig)')
b464f8e7
SG
64 parser.add_option('--preserve-config-y', action='store_true',
65 default=False, help="Don't convert y to 1 in configs")
d3d5c123
SG
66 parser.add_option('-l', '--list-error-boards', action='store_true',
67 default=False, help='Show a list of boards next to each error/warning')
68 parser.add_option('--list-tool-chains', action='store_true', default=False,
69 help='List available tool chains')
70 parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
d0ea61d9 71 default=False, help="Do a dry run (describe actions, but do nothing)")
5971ab5c
SG
72 parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs',
73 default=False, help="Don't create subdirectories when building current source for a single board")
d3d5c123
SG
74 parser.add_option('-o', '--output-dir', type='string',
75 dest='output_dir', default='..',
76 help='Directory where all builds happen and buildman has its workspace (default is ../)')
77 parser.add_option('-Q', '--quick', action='store_true',
78 default=False, help='Do a rough build, with limited warning resolution')
bb1501f2
SG
79 parser.add_option('-p', '--full-path', action='store_true',
80 default=False, help="Use full toolchain path in CROSS_COMPILE")
f79f1e0c
SW
81 parser.add_option('-P', '--per-board-out-dir', action='store_true',
82 default=False, help="Use an O= (output) directory per board rather than per thread")
d3d5c123
SG
83 parser.add_option('-s', '--summary', action='store_true',
84 default=False, help='Show a build summary')
85 parser.add_option('-S', '--show-sizes', action='store_true',
86 default=False, help='Show image size variation in summary')
cb39a109
SG
87 parser.add_option('--skip-net-tests', action='store_true', default=False,
88 help='Skip tests which need the network')
d3d5c123
SG
89 parser.add_option('--step', type='int',
90 default=1, help='Only build every n commits (0=just first and last)')
91 parser.add_option('-t', '--test', action='store_true', dest='test',
92 default=False, help='run tests')
93 parser.add_option('-T', '--threads', type='int',
94 default=None, help='Number of builder threads to use')
95 parser.add_option('-u', '--show_unknown', action='store_true',
96 default=False, help='Show boards with unknown build result')
97 parser.add_option('-v', '--verbose', action='store_true',
98 default=False, help='Show build results while the build progresses')
d2ce658d 99 parser.add_option('-V', '--verbose-build', action='store_true',
c81d0d21 100 default=False, help='Run make with V=1, logging all output')
d3d5c123
SG
101 parser.add_option('-x', '--exclude', dest='exclude',
102 type='string', action='append',
103 help='Specify a list of boards to exclude, separated by comma')
104
105 parser.usage += """
106
107 Build U-Boot for all commits in a branch. Use -n to do a dry run"""
108
109 return parser.parse_args()