mconf: only print correct options in the correct sections

A predicate in two comprehensions was dropped, in what looks like a
rebase error on my part. With the predicate added things work correctly.

Fixes: #8344
This commit is contained in:
Dylan Baker 2021-02-16 12:18:51 -08:00 committed by Jussi Pakkanen
parent 10d94a12b8
commit d5238baa45
1 changed files with 2 additions and 2 deletions

View File

@ -216,8 +216,8 @@ class Conf:
self.print_options('Core options', host_core_options[''])
if show_build_options:
self.print_options('', build_core_options[''])
self.print_options('Backend options', {str(k): v for k, v in self.coredata.options.items()})
self.print_options('Base options', {str(k): v for k, v in self.coredata.options.items()})
self.print_options('Backend options', {str(k): v for k, v in self.coredata.options.items() if k.is_backend()})
self.print_options('Base options', {str(k): v for k, v in self.coredata.options.items() if k.is_base()})
self.print_options('Compiler options', host_compiler_options.get('', {}))
if show_build_options:
self.print_options('', build_compiler_options.get('', {}))