mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
meson: Summarize information related to directories first
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210121095616.1471869-2-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b846ab7c95
commit
983d0a75c0
1 changed files with 5 additions and 1 deletions
|
@ -2287,6 +2287,7 @@ endif
|
|||
# Configuration summary #
|
||||
#########################
|
||||
|
||||
# Directories
|
||||
summary_info = {}
|
||||
summary_info += {'Install prefix': get_option('prefix')}
|
||||
summary_info += {'BIOS directory': qemu_datadir}
|
||||
|
@ -2306,8 +2307,11 @@ endif
|
|||
summary_info += {'Doc directory': get_option('docdir')}
|
||||
summary_info += {'Build directory': meson.current_build_dir()}
|
||||
summary_info += {'Source path': meson.current_source_dir()}
|
||||
summary_info += {'GIT binary': config_host['GIT']}
|
||||
summary_info += {'GIT submodules': config_host['GIT_SUBMODULES']}
|
||||
summary(summary_info, bool_yn: true, section: 'Directories')
|
||||
|
||||
summary_info = {}
|
||||
summary_info += {'GIT binary': config_host['GIT']}
|
||||
summary_info += {'C compiler': meson.get_compiler('c').cmd_array()[0]}
|
||||
summary_info += {'Host C compiler': meson.get_compiler('c', native: true).cmd_array()[0]}
|
||||
if link_language == 'cpp'
|
||||
|
|
Loading…
Reference in a new issue