]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | # SPDX-License-Identifier: GPL-2.0+ |
d3d5c123 SG |
2 | # Copyright (c) 2014 Google, Inc |
3 | # | |
d3d5c123 SG |
4 | |
5 | from optparse import OptionParser | |
6 | ||
7 | def 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() | |
57cb9d52 SG |
16 | parser.add_option('-A', '--print-prefix', action='store_true', |
17 | help='Print the tool-chain prefix for a board (CROSS_COMPILE=)') | |
d3d5c123 | 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') | |
0689036a SG |
23 | parser.add_option('--boards', type='string', action='append', |
24 | help='List of board names to build separated by comma') | |
d3d5c123 SG |
25 | 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, | |
f9c094bb | 32 | help='Show detailed size delta for each board in the -S summary') |
b50113f3 SG |
33 | parser.add_option('-D', '--config-only', action='store_true', default=False, |
34 | help="Don't build, just configure each commit") | |
d3d5c123 SG |
35 | parser.add_option('-e', '--show_errors', action='store_true', |
36 | default=False, help='Show errors and warnings') | |
2371d1bc DS |
37 | parser.add_option('-E', '--warnings-as-errors', action='store_true', |
38 | default=False, help='Treat all compiler warnings as errors') | |
d3d5c123 SG |
39 | 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') | |
827e37b5 SG |
45 | 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") | |
d3d5c123 SG |
49 | 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') | |
eb70a2c0 | 58 | # -I will be removed after April 2021 |
f79f1e0c | 59 | parser.add_option('-I', '--incremental', action='store_true', |
eb70a2c0 | 60 | default=False, help='Deprecated, does nothing. See -m') |
d3d5c123 SG |
61 | parser.add_option('-j', '--jobs', dest='jobs', type='int', |
62 | default=None, help='Number of jobs to run at once (passed to make)') | |
63 | parser.add_option('-k', '--keep-outputs', action='store_true', | |
64 | default=False, help='Keep all build output files (e.g. binaries)') | |
843312dc SG |
65 | parser.add_option('-K', '--show-config', action='store_true', |
66 | default=False, help='Show configuration changes in summary (both board config files and Kconfig)') | |
b464f8e7 SG |
67 | parser.add_option('--preserve-config-y', action='store_true', |
68 | default=False, help="Don't convert y to 1 in configs") | |
d3d5c123 SG |
69 | parser.add_option('-l', '--list-error-boards', action='store_true', |
70 | default=False, help='Show a list of boards next to each error/warning') | |
71 | parser.add_option('--list-tool-chains', action='store_true', default=False, | |
40232c91 | 72 | help='List available tool chains (use -v to see probing detail)') |
eb70a2c0 SG |
73 | parser.add_option('-m', '--mrproper', action='store_true', |
74 | default=False, help="Run 'make mrproper before reconfiguring") | |
d3d5c123 | 75 | parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run', |
d0ea61d9 | 76 | default=False, help="Do a dry run (describe actions, but do nothing)") |
5971ab5c SG |
77 | parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs', |
78 | default=False, help="Don't create subdirectories when building current source for a single board") | |
88daaef1 | 79 | parser.add_option('-o', '--output-dir', type='string', dest='output_dir', |
d3d5c123 | 80 | help='Directory where all builds happen and buildman has its workspace (default is ../)') |
00beb248 SG |
81 | parser.add_option('-O', '--override-toolchain', type='string', |
82 | help="Override host toochain to use for sandbox (e.g. 'clang-7')") | |
d3d5c123 SG |
83 | parser.add_option('-Q', '--quick', action='store_true', |
84 | default=False, help='Do a rough build, with limited warning resolution') | |
bb1501f2 SG |
85 | parser.add_option('-p', '--full-path', action='store_true', |
86 | default=False, help="Use full toolchain path in CROSS_COMPILE") | |
f79f1e0c SW |
87 | parser.add_option('-P', '--per-board-out-dir', action='store_true', |
88 | default=False, help="Use an O= (output) directory per board rather than per thread") | |
d3d5c123 SG |
89 | parser.add_option('-s', '--summary', action='store_true', |
90 | default=False, help='Show a build summary') | |
91 | parser.add_option('-S', '--show-sizes', action='store_true', | |
92 | default=False, help='Show image size variation in summary') | |
cb39a109 SG |
93 | parser.add_option('--skip-net-tests', action='store_true', default=False, |
94 | help='Skip tests which need the network') | |
d3d5c123 SG |
95 | parser.add_option('--step', type='int', |
96 | default=1, help='Only build every n commits (0=just first and last)') | |
97 | parser.add_option('-t', '--test', action='store_true', dest='test', | |
98 | default=False, help='run tests') | |
99 | parser.add_option('-T', '--threads', type='int', | |
b82492bb SG |
100 | default=None, |
101 | help='Number of builder threads to use (0=single-thread)') | |
d3d5c123 SG |
102 | parser.add_option('-u', '--show_unknown', action='store_true', |
103 | default=False, help='Show boards with unknown build result') | |
48ae4124 AK |
104 | parser.add_option('-U', '--show-environment', action='store_true', |
105 | default=False, help='Show environment changes in summary') | |
d3d5c123 SG |
106 | parser.add_option('-v', '--verbose', action='store_true', |
107 | default=False, help='Show build results while the build progresses') | |
d2ce658d | 108 | parser.add_option('-V', '--verbose-build', action='store_true', |
c81d0d21 | 109 | default=False, help='Run make with V=1, logging all output') |
d829f121 SG |
110 | parser.add_option('-w', '--work-in-output', action='store_true', |
111 | default=False, help='Use the output directory as the work directory') | |
7beb43c9 SG |
112 | parser.add_option('-W', '--ignore-warnings', action='store_true', |
113 | default=False, help='Return success even if there are warnings') | |
d3d5c123 SG |
114 | parser.add_option('-x', '--exclude', dest='exclude', |
115 | type='string', action='append', | |
116 | help='Specify a list of boards to exclude, separated by comma') | |
174592b9 SG |
117 | parser.add_option('-y', '--filter-dtb-warnings', action='store_true', |
118 | default=False, | |
113a8a5f SG |
119 | help='Filter out device-tree-compiler warnings from output') |
120 | parser.add_option('-Y', '--filter-migration-warnings', action='store_true', | |
121 | default=False, | |
122 | help='Filter out migration warnings from output') | |
d3d5c123 | 123 | |
0689036a | 124 | parser.usage += """ [list of target/arch/cpu/board/vendor/soc to build] |
d3d5c123 SG |
125 | |
126 | Build U-Boot for all commits in a branch. Use -n to do a dry run""" | |
127 | ||
128 | return parser.parse_args() |