summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-04-19 02:02:08 +0200
committerRichard Braun <rbraun@sceen.net>2018-04-19 02:02:08 +0200
commit89ebd57e0bb3a63f2f794ce41dd4c831b4aeb35c (patch)
tree65450f2f98fe1392eb0fda751489c6344733b881
parent8790d75d93c7e06b7b93c1078260aaf1e4ea25ca (diff)
tools/build_configs.py: augment the small set
Add CONFIG_CC_EXE and CONFIG_64BITS to the small (default) set of options to test since they are among the most important options a developer should mechanically check when using the tool.
-rwxr-xr-xtools/build_configs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/build_configs.py b/tools/build_configs.py
index 589313e..b0674b7 100755
--- a/tools/build_configs.py
+++ b/tools/build_configs.py
@@ -88,6 +88,8 @@ all_cc_options_dict = {
# option when building a configuration.
small_options_dict = {
+ 'CONFIG_CC_EXE' : ['gcc', 'clang'],
+ 'CONFIG_64BITS' : ['y', 'n'],
'CONFIG_CC_OPTIONS' : gen_cc_options_list(all_cc_options_dict),
'CONFIG_SMP' : ['y', 'n'],
'CONFIG_MAX_CPUS' : ['1', '128'],
@@ -96,8 +98,6 @@ small_options_dict = {
large_options_dict = dict(small_options_dict)
large_options_dict.update({
- 'CONFIG_CC_EXE' : ['gcc', 'clang'],
- 'CONFIG_64BITS' : ['y', 'n'],
'CONFIG_X86_PAE' : ['y', 'n'],
'CONFIG_MUTEX_ADAPTIVE' : ['y', 'n'],
'CONFIG_MUTEX_PI' : ['y', 'n'],