blob: 17ea015a95601b14193607d05a015cd97177ccfe [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glassd3d5c122014-09-05 19:00:10 -06002# Copyright (c) 2014 Google, Inc
3#
Simon Glassd3d5c122014-09-05 19:00:10 -06004
5from optparse import OptionParser
6
7def ParseArgs():
8 """Parse command line arguments from sys.argv[]
9
10 Returns:
11 tuple containing:
12 options: command line options
13 args: command lin arguments
14 """
15 parser = OptionParser()
Simon Glass57cb9d52019-12-05 15:59:14 -070016 parser.add_option('-A', '--print-prefix', action='store_true',
17 help='Print the tool-chain prefix for a board (CROSS_COMPILE=)')
Simon Glassd3d5c122014-09-05 19:00:10 -060018 parser.add_option('-b', '--branch', type='string',
Simon Glass843312d2015-02-05 22:06:15 -070019 help='Branch name to build, or range of commits to build')
Simon Glassd3d5c122014-09-05 19:00:10 -060020 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')
Simon Glass06890362018-06-11 23:26:46 -060023 parser.add_option('--boards', type='string', action='append',
24 help='List of board names to build separated by comma')
Simon Glassd3d5c122014-09-05 19:00:10 -060025 parser.add_option('-c', '--count', dest='count', type='int',
26 default=-1, help='Run build on the top n commits')
27 parser.add_option('-C', '--force-reconfig', dest='force_reconfig',
28 action='store_true', default=False,
29 help='Reconfigure for every commit (disable incremental build)')
30 parser.add_option('-d', '--detail', dest='show_detail',
31 action='store_true', default=False,
Simon Glassf9c094b2020-03-18 09:42:43 -060032 help='Show detailed size delta for each board in the -S summary')
Simon Glassb50113f2016-11-13 14:25:51 -070033 parser.add_option('-D', '--config-only', action='store_true', default=False,
34 help="Don't build, just configure each commit")
Simon Glassd3d5c122014-09-05 19:00:10 -060035 parser.add_option('-e', '--show_errors', action='store_true',
36 default=False, help='Show errors and warnings')
Daniel Schwierzeck2371d1b2018-01-26 16:31:05 +010037 parser.add_option('-E', '--warnings-as-errors', action='store_true',
38 default=False, help='Treat all compiler warnings as errors')
Simon Glassd3d5c122014-09-05 19:00:10 -060039 parser.add_option('-f', '--force-build', dest='force_build',
40 action='store_true', default=False,
41 help='Force build of boards even if already built')
42 parser.add_option('-F', '--force-build-failures', dest='force_build_failures',
43 action='store_true', default=False,
44 help='Force build of previously-failed build')
Simon Glass827e37b2014-12-01 17:34:06 -070045 parser.add_option('--fetch-arch', type='string',
46 help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)."
47 ' You can also fetch several toolchains separate by comma, or'
48 " 'all' to download all")
Simon Glassd3d5c122014-09-05 19:00:10 -060049 parser.add_option('-g', '--git', type='string',
50 help='Git repo containing branch to build', default='.')
51 parser.add_option('-G', '--config-file', type='string',
52 help='Path to buildman config file', default='')
53 parser.add_option('-H', '--full-help', action='store_true', dest='full_help',
54 default=False, help='Display the README file')
55 parser.add_option('-i', '--in-tree', dest='in_tree',
56 action='store_true', default=False,
57 help='Build in the source tree instead of a separate directory')
Stephen Warrenf79f1e02016-04-11 10:48:44 -060058 parser.add_option('-I', '--incremental', action='store_true',
59 default=False, help='Do not run make mrproper (when reconfiguring)')
Simon Glassd3d5c122014-09-05 19:00:10 -060060 parser.add_option('-j', '--jobs', dest='jobs', type='int',
61 default=None, help='Number of jobs to run at once (passed to make)')
62 parser.add_option('-k', '--keep-outputs', action='store_true',
63 default=False, help='Keep all build output files (e.g. binaries)')
Simon Glass843312d2015-02-05 22:06:15 -070064 parser.add_option('-K', '--show-config', action='store_true',
65 default=False, help='Show configuration changes in summary (both board config files and Kconfig)')
Simon Glassb464f8e2016-11-13 14:25:53 -070066 parser.add_option('--preserve-config-y', action='store_true',
67 default=False, help="Don't convert y to 1 in configs")
Simon Glassd3d5c122014-09-05 19:00:10 -060068 parser.add_option('-l', '--list-error-boards', action='store_true',
69 default=False, help='Show a list of boards next to each error/warning')
70 parser.add_option('--list-tool-chains', action='store_true', default=False,
Simon Glass40232c92018-11-06 16:02:10 -070071 help='List available tool chains (use -v to see probing detail)')
Simon Glassd3d5c122014-09-05 19:00:10 -060072 parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
Masahiro Yamadad0ea61d2014-09-05 02:23:27 +090073 default=False, help="Do a dry run (describe actions, but do nothing)")
Simon Glass5971ab52014-12-01 17:33:55 -070074 parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs',
75 default=False, help="Don't create subdirectories when building current source for a single board")
Simon Glassd3d5c122014-09-05 19:00:10 -060076 parser.add_option('-o', '--output-dir', type='string',
77 dest='output_dir', default='..',
78 help='Directory where all builds happen and buildman has its workspace (default is ../)')
Simon Glass00beb242019-01-07 16:44:20 -070079 parser.add_option('-O', '--override-toolchain', type='string',
80 help="Override host toochain to use for sandbox (e.g. 'clang-7')")
Simon Glassd3d5c122014-09-05 19:00:10 -060081 parser.add_option('-Q', '--quick', action='store_true',
82 default=False, help='Do a rough build, with limited warning resolution')
Simon Glassbb1501f2014-12-01 17:34:00 -070083 parser.add_option('-p', '--full-path', action='store_true',
84 default=False, help="Use full toolchain path in CROSS_COMPILE")
Stephen Warrenf79f1e02016-04-11 10:48:44 -060085 parser.add_option('-P', '--per-board-out-dir', action='store_true',
86 default=False, help="Use an O= (output) directory per board rather than per thread")
Simon Glassd3d5c122014-09-05 19:00:10 -060087 parser.add_option('-s', '--summary', action='store_true',
88 default=False, help='Show a build summary')
89 parser.add_option('-S', '--show-sizes', action='store_true',
90 default=False, help='Show image size variation in summary')
Simon Glasscb39a102017-11-12 21:52:14 -070091 parser.add_option('--skip-net-tests', action='store_true', default=False,
92 help='Skip tests which need the network')
Simon Glassd3d5c122014-09-05 19:00:10 -060093 parser.add_option('--step', type='int',
94 default=1, help='Only build every n commits (0=just first and last)')
95 parser.add_option('-t', '--test', action='store_true', dest='test',
96 default=False, help='run tests')
97 parser.add_option('-T', '--threads', type='int',
98 default=None, help='Number of builder threads to use')
99 parser.add_option('-u', '--show_unknown', action='store_true',
100 default=False, help='Show boards with unknown build result')
Alex Kiernan48ae4122018-05-31 04:48:34 +0000101 parser.add_option('-U', '--show-environment', action='store_true',
102 default=False, help='Show environment changes in summary')
Simon Glassd3d5c122014-09-05 19:00:10 -0600103 parser.add_option('-v', '--verbose', action='store_true',
104 default=False, help='Show build results while the build progresses')
Simon Glassd2ce6582014-12-01 17:34:07 -0700105 parser.add_option('-V', '--verbose-build', action='store_true',
Simon Glassc81d0d22016-03-12 18:50:33 -0700106 default=False, help='Run make with V=1, logging all output')
Simon Glassd829f122020-03-18 09:42:42 -0600107 parser.add_option('-w', '--work-in-output', action='store_true',
108 default=False, help='Use the output directory as the work directory')
Simon Glass7beb43c2020-03-18 09:42:44 -0600109 parser.add_option('-W', '--ignore-warnings', action='store_true',
110 default=False, help='Return success even if there are warnings')
Simon Glassd3d5c122014-09-05 19:00:10 -0600111 parser.add_option('-x', '--exclude', dest='exclude',
112 type='string', action='append',
113 help='Specify a list of boards to exclude, separated by comma')
114
Simon Glass06890362018-06-11 23:26:46 -0600115 parser.usage += """ [list of target/arch/cpu/board/vendor/soc to build]
Simon Glassd3d5c122014-09-05 19:00:10 -0600116
117 Build U-Boot for all commits in a branch. Use -n to do a dry run"""
118
119 return parser.parse_args()