2016-01-16 23:07:43 +08:00
|
|
|
# Copyright 2014-2016 The Meson development team
|
2014-01-06 03:36:25 +08:00
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2021-04-21 05:16:37 +08:00
|
|
|
import itertools
|
|
|
|
import shutil
|
2018-03-05 02:56:53 +08:00
|
|
|
import os
|
2021-04-21 05:16:37 +08:00
|
|
|
import textwrap
|
2020-09-01 20:28:08 +08:00
|
|
|
import typing as T
|
2014-01-06 03:36:25 +08:00
|
|
|
|
2021-04-21 04:38:13 +08:00
|
|
|
from . import build
|
|
|
|
from . import coredata
|
|
|
|
from . import environment
|
|
|
|
from . import mesonlib
|
|
|
|
from . import mintro
|
|
|
|
from . import mlog
|
|
|
|
from .ast import AstIDGenerator
|
2020-12-05 08:09:10 +08:00
|
|
|
from .mesonlib import MachineChoice, OptionKey
|
2020-12-03 08:02:03 +08:00
|
|
|
|
2020-09-01 20:28:08 +08:00
|
|
|
if T.TYPE_CHECKING:
|
|
|
|
import argparse
|
2020-12-04 03:37:52 +08:00
|
|
|
from .coredata import UserOption
|
2020-09-01 20:28:08 +08:00
|
|
|
|
|
|
|
def add_arguments(parser: 'argparse.ArgumentParser') -> None:
|
2018-03-16 07:19:13 +08:00
|
|
|
coredata.register_builtin_arguments(parser)
|
2018-05-13 22:36:58 +08:00
|
|
|
parser.add_argument('builddir', nargs='?', default='.')
|
2018-03-25 23:22:52 +08:00
|
|
|
parser.add_argument('--clearcache', action='store_true', default=False,
|
|
|
|
help='Clear cached state (e.g. found dependencies)')
|
2014-01-06 05:03:52 +08:00
|
|
|
|
2020-09-01 20:28:08 +08:00
|
|
|
def make_lower_case(val: T.Any) -> T.Union[str, T.List[T.Any]]: # T.Any because of recursion...
|
2019-01-06 05:12:02 +08:00
|
|
|
if isinstance(val, bool):
|
|
|
|
return str(val).lower()
|
|
|
|
elif isinstance(val, list):
|
|
|
|
return [make_lower_case(i) for i in val]
|
|
|
|
else:
|
|
|
|
return str(val)
|
|
|
|
|
|
|
|
|
2016-03-23 01:31:55 +08:00
|
|
|
class ConfException(mesonlib.MesonException):
|
2017-05-17 15:54:49 +08:00
|
|
|
pass
|
2014-01-06 03:45:07 +08:00
|
|
|
|
2018-03-05 02:56:53 +08:00
|
|
|
|
2014-01-06 03:45:07 +08:00
|
|
|
class Conf:
|
|
|
|
def __init__(self, build_dir):
|
2019-01-25 19:21:32 +08:00
|
|
|
self.build_dir = os.path.abspath(os.path.realpath(build_dir))
|
2019-02-05 18:18:57 +08:00
|
|
|
if 'meson.build' in [os.path.basename(self.build_dir), self.build_dir]:
|
2019-01-25 19:21:32 +08:00
|
|
|
self.build_dir = os.path.dirname(self.build_dir)
|
2019-02-05 18:18:57 +08:00
|
|
|
self.build = None
|
2019-02-17 17:10:18 +08:00
|
|
|
self.max_choices_line_length = 60
|
2019-07-18 02:17:18 +08:00
|
|
|
self.name_col = []
|
|
|
|
self.value_col = []
|
|
|
|
self.choices_col = []
|
|
|
|
self.descr_col = []
|
2021-04-21 05:16:37 +08:00
|
|
|
# XXX: is there a case where this can actually remain false?
|
2019-07-18 02:17:18 +08:00
|
|
|
self.has_choices = False
|
2020-12-05 08:09:10 +08:00
|
|
|
self.all_subprojects: T.Set[str] = set()
|
|
|
|
self.yielding_options: T.Set[OptionKey] = set()
|
2019-01-25 19:21:32 +08:00
|
|
|
|
|
|
|
if os.path.isdir(os.path.join(self.build_dir, 'meson-private')):
|
|
|
|
self.build = build.load(self.build_dir)
|
|
|
|
self.source_dir = self.build.environment.get_source_dir()
|
|
|
|
self.coredata = coredata.load(self.build_dir)
|
|
|
|
self.default_values_only = False
|
|
|
|
elif os.path.isfile(os.path.join(self.build_dir, environment.build_filename)):
|
|
|
|
# Make sure that log entries in other parts of meson don't interfere with the JSON output
|
|
|
|
mlog.disable()
|
|
|
|
self.source_dir = os.path.abspath(os.path.realpath(self.build_dir))
|
2019-05-13 01:37:40 +08:00
|
|
|
intr = mintro.IntrospectionInterpreter(self.source_dir, '', 'ninja', visitors = [AstIDGenerator()])
|
2019-01-25 19:21:32 +08:00
|
|
|
intr.analyze()
|
2019-11-06 21:49:00 +08:00
|
|
|
# Re-enable logging just in case
|
2019-01-25 19:21:32 +08:00
|
|
|
mlog.enable()
|
|
|
|
self.coredata = intr.coredata
|
|
|
|
self.default_values_only = True
|
|
|
|
else:
|
2021-03-05 06:16:11 +08:00
|
|
|
raise ConfException(f'Directory {build_dir} is neither a Meson build directory nor a project source directory.')
|
2014-01-06 04:01:52 +08:00
|
|
|
|
2017-01-14 22:24:07 +08:00
|
|
|
def clear_cache(self):
|
2021-06-10 21:28:05 +08:00
|
|
|
self.coredata.clear_deps_cache()
|
2017-01-14 22:24:07 +08:00
|
|
|
|
2018-05-13 22:36:58 +08:00
|
|
|
def set_options(self, options):
|
|
|
|
self.coredata.set_options(options)
|
|
|
|
|
2014-01-06 05:03:52 +08:00
|
|
|
def save(self):
|
2019-01-25 19:21:32 +08:00
|
|
|
# Do nothing when using introspection
|
|
|
|
if self.default_values_only:
|
|
|
|
return
|
2014-01-06 05:03:52 +08:00
|
|
|
# Only called if something has changed so overwrite unconditionally.
|
2018-03-01 06:25:12 +08:00
|
|
|
coredata.save(self.coredata, self.build_dir)
|
2014-06-08 04:39:59 +08:00
|
|
|
# We don't write the build file because any changes to it
|
2017-11-27 01:28:33 +08:00
|
|
|
# are erased when Meson is executed the next time, i.e. when
|
2017-01-14 22:24:07 +08:00
|
|
|
# Ninja is run.
|
2014-01-06 05:03:52 +08:00
|
|
|
|
2021-04-21 05:16:37 +08:00
|
|
|
def print_aligned(self) -> None:
|
|
|
|
"""Do the actual printing.
|
|
|
|
|
|
|
|
This prints the generated output in an aligned, pretty form. it aims
|
|
|
|
for a total width of 160 characters, but will use whatever the tty
|
|
|
|
reports it's value to be. Though this is much wider than the standard
|
|
|
|
80 characters of terminals, and even than the newer 120, compressing
|
|
|
|
it to those lengths makes the output hard to read.
|
|
|
|
|
|
|
|
Each column will have a specific width, and will be line wrapped.
|
|
|
|
"""
|
|
|
|
total_width = shutil.get_terminal_size(fallback=(160, 0))[0]
|
|
|
|
_col = max(total_width // 5, 20)
|
|
|
|
four_column = (_col, _col, _col, total_width - (3 * _col))
|
|
|
|
# In this case we don't have the choices field, so we can redistribute
|
|
|
|
# the extra 40 characters to val and desc
|
|
|
|
three_column = (_col, _col * 2, total_width // 2)
|
2018-03-04 20:42:28 +08:00
|
|
|
|
2019-07-18 02:17:18 +08:00
|
|
|
for line in zip(self.name_col, self.value_col, self.choices_col, self.descr_col):
|
2021-04-21 05:16:37 +08:00
|
|
|
if not any(line):
|
|
|
|
print('')
|
|
|
|
continue
|
|
|
|
|
|
|
|
# This is a header, like `Subproject foo:`,
|
|
|
|
# We just want to print that and get on with it
|
|
|
|
if line[0] and not any(line[1:]):
|
|
|
|
print(line[0])
|
|
|
|
continue
|
|
|
|
|
|
|
|
# wrap will take a long string, and create a list of strings no
|
|
|
|
# longer than the size given. Then that list can be zipped into, to
|
|
|
|
# print each line of the output, such the that columns are printed
|
|
|
|
# to the right width, row by row.
|
2019-07-18 02:17:18 +08:00
|
|
|
if self.has_choices:
|
2021-04-21 05:16:37 +08:00
|
|
|
name = textwrap.wrap(line[0], four_column[0])
|
|
|
|
val = textwrap.wrap(line[1], four_column[1])
|
|
|
|
choice = textwrap.wrap(line[2], four_column[2])
|
|
|
|
desc = textwrap.wrap(line[3], four_column[3])
|
|
|
|
for l in itertools.zip_longest(name, val, choice, desc, fillvalue=''):
|
|
|
|
# We must use the length modifier here to get even rows, as
|
|
|
|
# `textwrap.wrap` will only shorten, not lengthen each item
|
|
|
|
print('{:{widths[0]}} {:{widths[1]}} {:{widths[2]}} {}'.format(*l, widths=four_column))
|
mesonconf: reorder output columns
mesonconf prints build dir information in the order of
'Option' 'Description' 'Current Value' and, optionally, 'Possible Value'.
The Description tends to be longer and push the following values far
right, sometimes way far than fits in the full screen size of a
terminal on a FullHD monitor.
Experienced users know which options they want to change without
looking at the description string however they need to check the
current values for sure.
This patch moves the description to the last column. Now mesonconf
prints options in the following order:
'Option' 'Current Value' 'Possible Value' 'Description'
To implement this, mainly print_aligned() is modified. The second
argument of the function is changed from
- array of array of string to
- array of dict with 'name', 'descr', 'value', and 'choices,
which maps to 'option', 'description', 'current value' and 'possible
values', respectively.
Since the position of the possible values are moved before its
description, the presence and the length of it affects header as well
as the following description. Thus, we cal curate it before printing
the header.
To avoid re-calculation, we keep string version of the values and
flattened version of the possible values _in the given array_, which
means that now the print_aligned() function modify the the given
array. The current callers do not use the passing array. So there
should be no bad effects.
2017-05-10 13:49:01 +08:00
|
|
|
else:
|
2021-04-21 05:16:37 +08:00
|
|
|
name = textwrap.wrap(line[0], three_column[0])
|
|
|
|
val = textwrap.wrap(line[1], three_column[1])
|
|
|
|
desc = textwrap.wrap(line[3], three_column[2])
|
|
|
|
for l in itertools.zip_longest(name, val, desc, fillvalue=''):
|
|
|
|
print('{:{widths[0]}} {:{widths[1]}} {}'.format(*l, widths=three_column))
|
2019-07-18 02:17:18 +08:00
|
|
|
|
2020-12-05 08:09:10 +08:00
|
|
|
def split_options_per_subproject(self, options: 'coredata.KeyedOptionDictType') -> T.Dict[str, T.Dict[str, 'UserOption']]:
|
|
|
|
result: T.Dict[str, T.Dict[str, 'UserOption']] = {}
|
2020-12-01 08:49:18 +08:00
|
|
|
for k, o in options.items():
|
|
|
|
subproject = k.subproject
|
|
|
|
if k.subproject:
|
|
|
|
k = k.as_root()
|
|
|
|
if o.yielding and k in options:
|
|
|
|
self.yielding_options.add(k)
|
|
|
|
self.all_subprojects.add(subproject)
|
|
|
|
result.setdefault(subproject, {})[str(k)] = o
|
|
|
|
return result
|
|
|
|
|
2020-12-05 08:09:10 +08:00
|
|
|
def _add_line(self, name: OptionKey, value, choices, descr) -> None:
|
|
|
|
self.name_col.append(' ' * self.print_margin + str(name))
|
2019-07-18 02:17:18 +08:00
|
|
|
self.value_col.append(value)
|
|
|
|
self.choices_col.append(choices)
|
|
|
|
self.descr_col.append(descr)
|
|
|
|
|
|
|
|
def add_option(self, name, descr, value, choices):
|
|
|
|
if isinstance(value, list):
|
2021-03-05 06:02:31 +08:00
|
|
|
value = '[{}]'.format(', '.join(make_lower_case(value)))
|
2019-07-18 02:17:18 +08:00
|
|
|
else:
|
|
|
|
value = make_lower_case(value)
|
|
|
|
|
|
|
|
if choices:
|
|
|
|
self.has_choices = True
|
|
|
|
if isinstance(choices, list):
|
|
|
|
choices_list = make_lower_case(choices)
|
|
|
|
current = '['
|
|
|
|
while choices_list:
|
|
|
|
i = choices_list.pop(0)
|
|
|
|
if len(current) + len(i) >= self.max_choices_line_length:
|
|
|
|
self._add_line(name, value, current + ',', descr)
|
|
|
|
name = ''
|
|
|
|
value = ''
|
|
|
|
descr = ''
|
|
|
|
current = ' '
|
|
|
|
if len(current) > 1:
|
|
|
|
current += ', '
|
|
|
|
current += i
|
|
|
|
choices = current + ']'
|
2018-03-04 20:42:28 +08:00
|
|
|
else:
|
2019-07-18 02:17:18 +08:00
|
|
|
choices = make_lower_case(choices)
|
|
|
|
else:
|
|
|
|
choices = ''
|
2018-03-04 20:42:28 +08:00
|
|
|
|
2019-07-18 02:17:18 +08:00
|
|
|
self._add_line(name, value, choices, descr)
|
mesonconf: reorder output columns
mesonconf prints build dir information in the order of
'Option' 'Description' 'Current Value' and, optionally, 'Possible Value'.
The Description tends to be longer and push the following values far
right, sometimes way far than fits in the full screen size of a
terminal on a FullHD monitor.
Experienced users know which options they want to change without
looking at the description string however they need to check the
current values for sure.
This patch moves the description to the last column. Now mesonconf
prints options in the following order:
'Option' 'Current Value' 'Possible Value' 'Description'
To implement this, mainly print_aligned() is modified. The second
argument of the function is changed from
- array of array of string to
- array of dict with 'name', 'descr', 'value', and 'choices,
which maps to 'option', 'description', 'current value' and 'possible
values', respectively.
Since the position of the possible values are moved before its
description, the presence and the length of it affects header as well
as the following description. Thus, we cal curate it before printing
the header.
To avoid re-calculation, we keep string version of the values and
flattened version of the possible values _in the given array_, which
means that now the print_aligned() function modify the the given
array. The current callers do not use the passing array. So there
should be no bad effects.
2017-05-10 13:49:01 +08:00
|
|
|
|
2019-07-18 02:17:18 +08:00
|
|
|
def add_title(self, title):
|
|
|
|
titles = {'descr': 'Description', 'value': 'Current Value', 'choices': 'Possible Values'}
|
|
|
|
if self.default_values_only:
|
|
|
|
titles['value'] = 'Default Value'
|
|
|
|
self._add_line('', '', '', '')
|
|
|
|
self._add_line(title, titles['value'], titles['choices'], titles['descr'])
|
|
|
|
self._add_line('-' * len(title), '-' * len(titles['value']), '-' * len(titles['choices']), '-' * len(titles['descr']))
|
|
|
|
|
|
|
|
def add_section(self, section):
|
|
|
|
self.print_margin = 0
|
|
|
|
self._add_line('', '', '', '')
|
|
|
|
self._add_line(section + ':', '', '', '')
|
|
|
|
self.print_margin = 2
|
2014-01-06 04:15:29 +08:00
|
|
|
|
2020-12-05 08:09:10 +08:00
|
|
|
def print_options(self, title: str, options: 'coredata.KeyedOptionDictType') -> None:
|
2018-05-13 22:36:58 +08:00
|
|
|
if not options:
|
2019-07-18 02:17:18 +08:00
|
|
|
return
|
|
|
|
if title:
|
|
|
|
self.add_title(title)
|
2019-01-08 05:47:27 +08:00
|
|
|
for k, o in sorted(options.items()):
|
2019-07-18 02:17:18 +08:00
|
|
|
printable_value = o.printable_value()
|
|
|
|
if k in self.yielding_options:
|
|
|
|
printable_value = '<inherited from main project>'
|
|
|
|
self.add_option(k, o.description, printable_value, o.choices)
|
2018-05-13 22:36:58 +08:00
|
|
|
|
2014-01-06 04:01:52 +08:00
|
|
|
def print_conf(self):
|
2019-01-25 19:21:32 +08:00
|
|
|
def print_default_values_warning():
|
|
|
|
mlog.warning('The source directory instead of the build directory was specified.')
|
|
|
|
mlog.warning('Only the default values for the project are printed, and all command line parameters are ignored.')
|
|
|
|
|
|
|
|
if self.default_values_only:
|
|
|
|
print_default_values_warning()
|
|
|
|
print('')
|
|
|
|
|
2015-11-10 06:45:05 +08:00
|
|
|
print('Core properties:')
|
2019-01-25 19:21:32 +08:00
|
|
|
print(' Source dir', self.source_dir)
|
|
|
|
if not self.default_values_only:
|
|
|
|
print(' Build dir ', self.build_dir)
|
2018-05-13 22:36:58 +08:00
|
|
|
|
2020-12-05 08:09:10 +08:00
|
|
|
dir_option_names = set(coredata.BUILTIN_DIR_OPTIONS)
|
|
|
|
test_option_names = {OptionKey('errorlogs'),
|
2020-12-05 09:01:45 +08:00
|
|
|
OptionKey('stdsplit')}
|
|
|
|
|
|
|
|
dir_options: 'coredata.KeyedOptionDictType' = {}
|
|
|
|
test_options: 'coredata.KeyedOptionDictType' = {}
|
|
|
|
core_options: 'coredata.KeyedOptionDictType' = {}
|
|
|
|
for k, v in self.coredata.options.items():
|
|
|
|
if k in dir_option_names:
|
|
|
|
dir_options[k] = v
|
|
|
|
elif k in test_option_names:
|
|
|
|
test_options[k] = v
|
|
|
|
elif k.is_builtin():
|
|
|
|
core_options[k] = v
|
|
|
|
|
|
|
|
host_core_options = self.split_options_per_subproject({k: v for k, v in core_options.items() if k.machine is MachineChoice.HOST})
|
|
|
|
build_core_options = self.split_options_per_subproject({k: v for k, v in core_options.items() if k.machine is MachineChoice.BUILD})
|
|
|
|
host_compiler_options = self.split_options_per_subproject({k: v for k, v in self.coredata.options.items() if k.is_compiler() and k.machine is MachineChoice.HOST})
|
|
|
|
build_compiler_options = self.split_options_per_subproject({k: v for k, v in self.coredata.options.items() if k.is_compiler() and k.machine is MachineChoice.BUILD})
|
|
|
|
project_options = self.split_options_per_subproject({k: v for k, v in self.coredata.options.items() if k.is_project()})
|
2019-07-18 02:17:18 +08:00
|
|
|
show_build_options = self.default_values_only or self.build.environment.is_cross_build()
|
|
|
|
|
|
|
|
self.add_section('Main project options')
|
2020-12-05 08:09:10 +08:00
|
|
|
self.print_options('Core options', host_core_options[''])
|
2019-07-18 02:17:18 +08:00
|
|
|
if show_build_options:
|
2020-12-05 08:09:10 +08:00
|
|
|
self.print_options('', build_core_options[''])
|
2021-02-17 04:18:51 +08:00
|
|
|
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()})
|
2019-10-21 22:38:58 +08:00
|
|
|
self.print_options('Compiler options', host_compiler_options.get('', {}))
|
2019-07-18 02:17:18 +08:00
|
|
|
if show_build_options:
|
2019-10-21 22:38:58 +08:00
|
|
|
self.print_options('', build_compiler_options.get('', {}))
|
2018-05-13 22:36:58 +08:00
|
|
|
self.print_options('Directories', dir_options)
|
|
|
|
self.print_options('Testing options', test_options)
|
2019-10-21 22:38:58 +08:00
|
|
|
self.print_options('Project options', project_options.get('', {}))
|
2019-07-18 02:17:18 +08:00
|
|
|
for subproject in sorted(self.all_subprojects):
|
|
|
|
if subproject == '':
|
|
|
|
continue
|
|
|
|
self.add_section('Subproject ' + subproject)
|
2021-04-21 04:25:08 +08:00
|
|
|
if subproject in host_core_options:
|
|
|
|
self.print_options('Core options', host_core_options[subproject])
|
|
|
|
if subproject in build_core_options and show_build_options:
|
|
|
|
self.print_options('', build_core_options[subproject])
|
2019-07-18 02:17:18 +08:00
|
|
|
if subproject in host_compiler_options:
|
|
|
|
self.print_options('Compiler options', host_compiler_options[subproject])
|
|
|
|
if subproject in build_compiler_options and show_build_options:
|
|
|
|
self.print_options('', build_compiler_options[subproject])
|
|
|
|
if subproject in project_options:
|
|
|
|
self.print_options('Project options', project_options[subproject])
|
|
|
|
self.print_aligned()
|
2014-01-06 03:36:25 +08:00
|
|
|
|
2019-01-25 19:21:32 +08:00
|
|
|
# Print the warning twice so that the user shouldn't be able to miss it
|
|
|
|
if self.default_values_only:
|
|
|
|
print('')
|
|
|
|
print_default_values_warning()
|
2018-03-05 02:56:53 +08:00
|
|
|
|
2021-01-13 03:51:19 +08:00
|
|
|
self.print_nondefault_buildtype_options()
|
|
|
|
|
|
|
|
def print_nondefault_buildtype_options(self):
|
|
|
|
mismatching = self.coredata.get_nondefault_buildtype_args()
|
|
|
|
if not mismatching:
|
|
|
|
return
|
|
|
|
print("\nThe following option(s) have a different value than the build type default\n")
|
|
|
|
print(f' current default')
|
|
|
|
for m in mismatching:
|
|
|
|
print(f'{m[0]:21}{m[1]:10}{m[2]:10}')
|
|
|
|
|
2018-05-13 22:36:58 +08:00
|
|
|
def run(options):
|
2018-05-13 22:36:58 +08:00
|
|
|
coredata.parse_cmd_line_options(options)
|
2018-05-13 22:36:58 +08:00
|
|
|
builddir = os.path.abspath(os.path.realpath(options.builddir))
|
2019-01-03 02:27:20 +08:00
|
|
|
c = None
|
2014-01-06 03:45:07 +08:00
|
|
|
try:
|
|
|
|
c = Conf(builddir)
|
2019-02-05 18:18:57 +08:00
|
|
|
if c.default_values_only:
|
|
|
|
c.print_conf()
|
|
|
|
return 0
|
|
|
|
|
2017-01-14 22:24:07 +08:00
|
|
|
save = False
|
2020-12-01 04:10:40 +08:00
|
|
|
if options.cmd_line_options:
|
2018-05-13 22:36:58 +08:00
|
|
|
c.set_options(options.cmd_line_options)
|
2018-10-26 00:19:23 +08:00
|
|
|
coredata.update_cmd_line_file(builddir, options)
|
2017-01-14 22:24:07 +08:00
|
|
|
save = True
|
|
|
|
elif options.clearcache:
|
|
|
|
c.clear_cache()
|
|
|
|
save = True
|
2014-01-06 05:03:52 +08:00
|
|
|
else:
|
|
|
|
c.print_conf()
|
2017-01-14 22:24:07 +08:00
|
|
|
if save:
|
|
|
|
c.save()
|
2018-12-03 01:14:44 +08:00
|
|
|
mintro.update_build_options(c.coredata, c.build.environment.info_dir)
|
2019-01-03 02:27:20 +08:00
|
|
|
mintro.write_meson_info_file(c.build, [])
|
2015-11-10 06:45:05 +08:00
|
|
|
except ConfException as e:
|
2018-03-10 20:18:15 +08:00
|
|
|
print('Meson configurator encountered an error:')
|
2019-01-03 02:27:20 +08:00
|
|
|
if c is not None and c.build is not None:
|
|
|
|
mintro.write_meson_info_file(c.build, [e])
|
2018-03-10 20:18:15 +08:00
|
|
|
raise e
|
2016-01-16 23:07:43 +08:00
|
|
|
return 0
|