blob: a9cda2495727602fec0f66758cc65d8829b10f3b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass04bac6b2014-09-05 19:00:10 -06002# Copyright (c) 2014 Google, Inc
3#
Simon Glass04bac6b2014-09-05 19:00:10 -06004
5from optparse import OptionParser
Simon Glass69c4dc12023-02-23 18:18:10 -07006import os
7import pathlib
8
9BUILDMAN_DIR = pathlib.Path(__file__).parent
10HAS_TESTS = os.path.exists(BUILDMAN_DIR / "test.py")
Simon Glass04bac6b2014-09-05 19:00:10 -060011
12def ParseArgs():
13 """Parse command line arguments from sys.argv[]
14
15 Returns:
16 tuple containing:
17 options: command line options
18 args: command lin arguments
19 """
20 parser = OptionParser()
Simon Glasse5650a82022-01-22 05:07:33 -070021 parser.add_option('-a', '--adjust-cfg', type=str, action='append',
22 help='Adjust the Kconfig settings in .config before building')
Simon Glass48ac42e2019-12-05 15:59:14 -070023 parser.add_option('-A', '--print-prefix', action='store_true',
24 help='Print the tool-chain prefix for a board (CROSS_COMPILE=)')
Simon Glass04bac6b2014-09-05 19:00:10 -060025 parser.add_option('-b', '--branch', type='string',
Simon Glassdb17fb82015-02-05 22:06:15 -070026 help='Branch name to build, or range of commits to build')
Simon Glass04bac6b2014-09-05 19:00:10 -060027 parser.add_option('-B', '--bloat', dest='show_bloat',
28 action='store_true', default=False,
29 help='Show changes in function code size for each board')
Simon Glassd9eb9f02018-06-11 23:26:46 -060030 parser.add_option('--boards', type='string', action='append',
31 help='List of board names to build separated by comma')
Simon Glass04bac6b2014-09-05 19:00:10 -060032 parser.add_option('-c', '--count', dest='count', type='int',
33 default=-1, help='Run build on the top n commits')
34 parser.add_option('-C', '--force-reconfig', dest='force_reconfig',
35 action='store_true', default=False,
36 help='Reconfigure for every commit (disable incremental build)')
37 parser.add_option('-d', '--detail', dest='show_detail',
38 action='store_true', default=False,
Simon Glassb4002462020-03-18 09:42:43 -060039 help='Show detailed size delta for each board in the -S summary')
Simon Glass739e8512016-11-13 14:25:51 -070040 parser.add_option('-D', '--config-only', action='store_true', default=False,
41 help="Don't build, just configure each commit")
Simon Glass838ddf32022-01-22 05:07:29 -070042 parser.add_option('--debug', action='store_true',
43 help='Enabling debugging (provides a full traceback on error)')
Simon Glass04bac6b2014-09-05 19:00:10 -060044 parser.add_option('-e', '--show_errors', action='store_true',
45 default=False, help='Show errors and warnings')
Daniel Schwierzeck20e2ea92018-01-26 16:31:05 +010046 parser.add_option('-E', '--warnings-as-errors', action='store_true',
47 default=False, help='Treat all compiler warnings as errors')
Simon Glass04bac6b2014-09-05 19:00:10 -060048 parser.add_option('-f', '--force-build', dest='force_build',
49 action='store_true', default=False,
50 help='Force build of boards even if already built')
51 parser.add_option('-F', '--force-build-failures', dest='force_build_failures',
52 action='store_true', default=False,
53 help='Force build of previously-failed build')
Simon Glass7e803e12014-12-01 17:34:06 -070054 parser.add_option('--fetch-arch', type='string',
55 help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)."
56 ' You can also fetch several toolchains separate by comma, or'
57 " 'all' to download all")
Simon Glass04bac6b2014-09-05 19:00:10 -060058 parser.add_option('-g', '--git', type='string',
59 help='Git repo containing branch to build', default='.')
60 parser.add_option('-G', '--config-file', type='string',
61 help='Path to buildman config file', default='')
62 parser.add_option('-H', '--full-help', action='store_true', dest='full_help',
63 default=False, help='Display the README file')
64 parser.add_option('-i', '--in-tree', dest='in_tree',
65 action='store_true', default=False,
66 help='Build in the source tree instead of a separate directory')
Simon Glass6c435622022-07-11 19:03:56 -060067 parser.add_option('-I', '--ide', action='store_true', default=False,
68 help='Create build output that can be parsed by an IDE')
Simon Glass04bac6b2014-09-05 19:00:10 -060069 parser.add_option('-j', '--jobs', dest='jobs', type='int',
70 default=None, help='Number of jobs to run at once (passed to make)')
71 parser.add_option('-k', '--keep-outputs', action='store_true',
72 default=False, help='Keep all build output files (e.g. binaries)')
Simon Glassdb17fb82015-02-05 22:06:15 -070073 parser.add_option('-K', '--show-config', action='store_true',
74 default=False, help='Show configuration changes in summary (both board config files and Kconfig)')
Simon Glasscde5c302016-11-13 14:25:53 -070075 parser.add_option('--preserve-config-y', action='store_true',
76 default=False, help="Don't convert y to 1 in configs")
Simon Glass04bac6b2014-09-05 19:00:10 -060077 parser.add_option('-l', '--list-error-boards', action='store_true',
78 default=False, help='Show a list of boards next to each error/warning')
Simon Glassf6bfcca2023-02-21 12:40:28 -070079 parser.add_option('-L', '--no-lto', action='store_true',
80 default=False, help='Disable Link-time Optimisation (LTO) for builds')
Simon Glass04bac6b2014-09-05 19:00:10 -060081 parser.add_option('--list-tool-chains', action='store_true', default=False,
Simon Glass74579fc2018-11-06 16:02:10 -070082 help='List available tool chains (use -v to see probing detail)')
Simon Glass6029af12020-04-09 15:08:51 -060083 parser.add_option('-m', '--mrproper', action='store_true',
84 default=False, help="Run 'make mrproper before reconfiguring")
Tom Rini93ebd462022-11-09 19:14:53 -070085 parser.add_option(
86 '-M', '--allow-missing', action='store_true', default=False,
87 help='Tell binman to allow missing blobs and generate fake ones as needed'),
88 parser.add_option(
89 '--no-allow-missing', action='store_true', default=False,
90 help='Disable telling binman to allow missing blobs'),
Simon Glass04bac6b2014-09-05 19:00:10 -060091 parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
Masahiro Yamadaf11c6062014-09-05 02:23:27 +090092 default=False, help="Do a dry run (describe actions, but do nothing)")
Simon Glasse87bde12014-12-01 17:33:55 -070093 parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs',
94 default=False, help="Don't create subdirectories when building current source for a single board")
Simon Glassd9c98632020-04-17 17:51:32 -060095 parser.add_option('-o', '--output-dir', type='string', dest='output_dir',
Simon Glass04bac6b2014-09-05 19:00:10 -060096 help='Directory where all builds happen and buildman has its workspace (default is ../)')
Simon Glassf77ca5b2019-01-07 16:44:20 -070097 parser.add_option('-O', '--override-toolchain', type='string',
98 help="Override host toochain to use for sandbox (e.g. 'clang-7')")
Simon Glass04bac6b2014-09-05 19:00:10 -060099 parser.add_option('-Q', '--quick', action='store_true',
100 default=False, help='Do a rough build, with limited warning resolution')
Simon Glassd48a46c2014-12-01 17:34:00 -0700101 parser.add_option('-p', '--full-path', action='store_true',
102 default=False, help="Use full toolchain path in CROSS_COMPILE")
Stephen Warren97c96902016-04-11 10:48:44 -0600103 parser.add_option('-P', '--per-board-out-dir', action='store_true',
104 default=False, help="Use an O= (output) directory per board rather than per thread")
Simon Glass828d70d2023-02-21 12:40:29 -0700105 parser.add_option('-r', '--reproducible-builds', action='store_true',
106 help='Set SOURCE_DATE_EPOCH=0 to suuport a reproducible build')
Simon Glass0c477b72022-07-11 19:04:04 -0600107 parser.add_option('-R', '--regen-board-list', action='store_true',
108 help='Force regeneration of the list of boards, like the old boards.cfg file')
Simon Glass04bac6b2014-09-05 19:00:10 -0600109 parser.add_option('-s', '--summary', action='store_true',
110 default=False, help='Show a build summary')
111 parser.add_option('-S', '--show-sizes', action='store_true',
112 default=False, help='Show image size variation in summary')
113 parser.add_option('--step', type='int',
114 default=1, help='Only build every n commits (0=just first and last)')
Simon Glass69c4dc12023-02-23 18:18:10 -0700115 if HAS_TESTS:
116 parser.add_option('--skip-net-tests', action='store_true', default=False,
117 help='Skip tests which need the network')
118 parser.add_option('-t', '--test', action='store_true', dest='test',
119 default=False, help='run tests')
Simon Glass04bac6b2014-09-05 19:00:10 -0600120 parser.add_option('-T', '--threads', type='int',
Simon Glassc635d892021-01-30 22:17:46 -0700121 default=None,
122 help='Number of builder threads to use (0=single-thread)')
Simon Glass04bac6b2014-09-05 19:00:10 -0600123 parser.add_option('-u', '--show_unknown', action='store_true',
124 default=False, help='Show boards with unknown build result')
Alex Kiernan4059e302018-05-31 04:48:34 +0000125 parser.add_option('-U', '--show-environment', action='store_true',
126 default=False, help='Show environment changes in summary')
Simon Glass04bac6b2014-09-05 19:00:10 -0600127 parser.add_option('-v', '--verbose', action='store_true',
128 default=False, help='Show build results while the build progresses')
Simon Glass655b6102014-12-01 17:34:07 -0700129 parser.add_option('-V', '--verbose-build', action='store_true',
Simon Glass54e628e2016-03-12 18:50:33 -0700130 default=False, help='Run make with V=1, logging all output')
Simon Glassb6eb8cf2020-03-18 09:42:42 -0600131 parser.add_option('-w', '--work-in-output', action='store_true',
132 default=False, help='Use the output directory as the work directory')
Simon Glass35e7d382020-03-18 09:42:44 -0600133 parser.add_option('-W', '--ignore-warnings', action='store_true',
134 default=False, help='Return success even if there are warnings')
Simon Glass04bac6b2014-09-05 19:00:10 -0600135 parser.add_option('-x', '--exclude', dest='exclude',
136 type='string', action='append',
137 help='Specify a list of boards to exclude, separated by comma')
Simon Glass9ea93812020-04-09 15:08:52 -0600138 parser.add_option('-y', '--filter-dtb-warnings', action='store_true',
139 default=False,
Simon Glassf4ebfba2020-04-09 15:08:53 -0600140 help='Filter out device-tree-compiler warnings from output')
141 parser.add_option('-Y', '--filter-migration-warnings', action='store_true',
142 default=False,
143 help='Filter out migration warnings from output')
Simon Glass04bac6b2014-09-05 19:00:10 -0600144
Simon Glassd9eb9f02018-06-11 23:26:46 -0600145 parser.usage += """ [list of target/arch/cpu/board/vendor/soc to build]
Simon Glass04bac6b2014-09-05 19:00:10 -0600146
147 Build U-Boot for all commits in a branch. Use -n to do a dry run"""
148
149 return parser.parse_args()