2021-05-09 03:21:04 +08:00
|
|
|
# Copyright 2012-2021 The Meson development team
|
2016-01-16 03:12:23 +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-06-22 22:20:14 +08:00
|
|
|
# Work around some pathlib bugs...
|
|
|
|
from . import _pathlib
|
2018-09-19 00:01:35 +08:00
|
|
|
import sys
|
2021-06-22 22:20:14 +08:00
|
|
|
sys.modules['pathlib'] = _pathlib
|
|
|
|
|
2016-01-16 03:12:23 +08:00
|
|
|
import os.path
|
2018-09-19 00:39:01 +08:00
|
|
|
import importlib
|
2018-05-13 22:36:58 +08:00
|
|
|
import traceback
|
|
|
|
import argparse
|
2019-01-05 06:27:38 +08:00
|
|
|
import codecs
|
2019-02-27 22:10:35 +08:00
|
|
|
import shutil
|
2018-04-25 02:32:44 +08:00
|
|
|
|
2018-09-19 00:01:35 +08:00
|
|
|
from . import mesonlib
|
|
|
|
from . import mlog
|
2021-02-21 01:04:01 +08:00
|
|
|
from . import mconf, mdist, minit, minstall, mintro, msetup, mtest, rewriter, msubprojects, munstable_coredata, mcompile, mdevenv
|
2016-03-23 01:31:55 +08:00
|
|
|
from .mesonlib import MesonException
|
2018-06-03 17:30:53 +08:00
|
|
|
from .environment import detect_msys2_arch
|
2018-05-13 22:36:58 +08:00
|
|
|
from .wrap import wraptool
|
|
|
|
|
2021-05-29 01:03:41 +08:00
|
|
|
need_setup_vsenv = False
|
|
|
|
|
2021-05-09 03:21:04 +08:00
|
|
|
bat_template = '''@ECHO OFF
|
|
|
|
|
|
|
|
call "{}"
|
|
|
|
|
|
|
|
ECHO {}
|
|
|
|
SET
|
|
|
|
'''
|
|
|
|
|
|
|
|
# If on Windows and VS is installed but not set up in the environment,
|
|
|
|
# set it to be runnable. In this way Meson can be directly invoked
|
|
|
|
# from any shell, VS Code etc.
|
2021-06-08 18:48:33 +08:00
|
|
|
def setup_vsenv() -> None:
|
2021-05-09 03:21:04 +08:00
|
|
|
import subprocess, json, pathlib
|
|
|
|
if not mesonlib.is_windows():
|
|
|
|
return
|
|
|
|
bat_placeholder = 'nananananananananananananananana'
|
|
|
|
# If an existing build tool chain exists in PATH -> do nothing.
|
|
|
|
if shutil.which('cc'):
|
|
|
|
return
|
2021-05-24 02:56:12 +08:00
|
|
|
if shutil.which('gcc'):
|
|
|
|
return
|
2021-05-09 03:21:04 +08:00
|
|
|
if shutil.which('clang'):
|
|
|
|
return
|
|
|
|
if shutil.which('clang-cl'):
|
|
|
|
return
|
|
|
|
if os.environ.get('OSTYPE', bat_placeholder) == 'cygwin':
|
|
|
|
return
|
|
|
|
if 'Visual Studio' in os.environ['PATH']:
|
|
|
|
return
|
2021-05-22 06:05:18 +08:00
|
|
|
# VSINSTALL is set when running setvars from a Visual Studio installation
|
|
|
|
# Tested with Visual Studio 2012 and 2017
|
|
|
|
if 'VSINSTALLDIR' in os.environ:
|
|
|
|
return
|
|
|
|
# Check explicitly for cl when on Windows
|
|
|
|
if shutil.which('cl.exe'):
|
|
|
|
return
|
|
|
|
|
2021-05-28 23:43:52 +08:00
|
|
|
root = os.environ.get("ProgramFiles(x86)") or os.environ.get("ProgramFiles")
|
|
|
|
bat_locator_bin = pathlib.Path(root, 'Microsoft Visual Studio/Installer/vswhere.exe')
|
|
|
|
if not bat_locator_bin.exists():
|
2021-05-09 03:21:04 +08:00
|
|
|
return
|
2021-05-28 23:43:52 +08:00
|
|
|
bat_json = subprocess.check_output(
|
|
|
|
[
|
|
|
|
str(bat_locator_bin),
|
|
|
|
'-latest',
|
|
|
|
'-prerelease',
|
|
|
|
'-requiresAny',
|
|
|
|
'-requires', 'Microsoft.VisualStudio.Component.VC.Tools.x86.x64',
|
|
|
|
'-products', '*',
|
2021-08-01 23:36:53 +08:00
|
|
|
'-utf8',
|
2021-05-28 23:43:52 +08:00
|
|
|
'-format',
|
|
|
|
'json'
|
|
|
|
]
|
|
|
|
)
|
2021-05-09 03:21:04 +08:00
|
|
|
bat_info = json.loads(bat_json)
|
|
|
|
if not bat_info:
|
|
|
|
# VS installer instelled but not VS itself maybe?
|
|
|
|
return
|
|
|
|
print('Activating VS', bat_info[0]['catalog']['productDisplayVersion'])
|
2021-05-28 23:43:52 +08:00
|
|
|
bat_root = pathlib.Path(bat_info[0]['installationPath'])
|
|
|
|
bat_path = bat_root / 'VC/Auxiliary/Build/vcvars64.bat'
|
|
|
|
if not bat_path.exists():
|
2021-05-09 03:21:04 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
bat_file = pathlib.Path.home() / 'vsdetect.bat'
|
|
|
|
|
|
|
|
bat_separator = '---SPLIT---'
|
|
|
|
bat_contents = bat_template.format(bat_path, bat_separator)
|
2021-06-23 04:59:16 +08:00
|
|
|
bat_file.write_text(bat_contents, encoding='utf-8')
|
2021-05-09 03:21:04 +08:00
|
|
|
try:
|
|
|
|
bat_output = subprocess.check_output(str(bat_file), universal_newlines=True)
|
|
|
|
finally:
|
|
|
|
bat_file.unlink()
|
|
|
|
bat_lines = bat_output.split('\n')
|
|
|
|
bat_separator_seen = False
|
|
|
|
for bat_line in bat_lines:
|
|
|
|
if bat_line == bat_separator:
|
|
|
|
bat_separator_seen = True
|
|
|
|
continue
|
|
|
|
if not bat_separator_seen:
|
|
|
|
continue
|
|
|
|
if not bat_line:
|
|
|
|
continue
|
|
|
|
k, v = bat_line.split('=', 1)
|
|
|
|
os.environ[k] = v
|
2021-05-29 01:03:41 +08:00
|
|
|
global need_setup_vsenv
|
|
|
|
need_setup_vsenv = True
|
2021-05-09 03:21:04 +08:00
|
|
|
|
2018-05-13 22:36:58 +08:00
|
|
|
|
2017-11-28 22:28:36 +08:00
|
|
|
# Note: when adding arguments, please also add them to the completion
|
|
|
|
# scripts in $MESONSRC/data/shell-completions/
|
2018-05-13 22:36:58 +08:00
|
|
|
class CommandLineParser:
|
|
|
|
def __init__(self):
|
2019-02-27 22:10:35 +08:00
|
|
|
self.term_width = shutil.get_terminal_size().columns
|
2019-11-06 21:49:00 +08:00
|
|
|
self.formatter = lambda prog: argparse.HelpFormatter(prog, max_help_position=int(self.term_width / 2), width=self.term_width)
|
2019-02-27 22:10:35 +08:00
|
|
|
|
2018-05-13 22:36:58 +08:00
|
|
|
self.commands = {}
|
2018-09-23 22:51:47 +08:00
|
|
|
self.hidden_commands = []
|
2019-11-06 21:49:00 +08:00
|
|
|
self.parser = argparse.ArgumentParser(prog='meson', formatter_class=self.formatter)
|
2020-08-31 17:36:20 +08:00
|
|
|
self.subparsers = self.parser.add_subparsers(title='Commands', dest='command',
|
2018-05-13 22:36:58 +08:00
|
|
|
description='If no command is specified it defaults to setup command.')
|
|
|
|
self.add_command('setup', msetup.add_arguments, msetup.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Configure the project')
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('configure', mconf.add_arguments, mconf.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Change project options',)
|
2019-07-21 23:54:16 +08:00
|
|
|
self.add_command('dist', mdist.add_arguments, mdist.run,
|
2019-07-21 21:51:12 +08:00
|
|
|
help_msg='Generate release archive',)
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('install', minstall.add_arguments, minstall.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Install the project')
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('introspect', mintro.add_arguments, mintro.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Introspect project')
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('init', minit.add_arguments, minit.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Create a new project')
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('test', mtest.add_arguments, mtest.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Run tests')
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('wrap', wraptool.add_arguments, wraptool.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Wrap tools')
|
2018-10-13 01:53:05 +08:00
|
|
|
self.add_command('subprojects', msubprojects.add_arguments, msubprojects.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Manage subprojects')
|
2018-05-13 22:36:58 +08:00
|
|
|
self.add_command('help', self.add_help_arguments, self.run_help_command,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Print help of a subcommand')
|
2019-11-06 21:49:00 +08:00
|
|
|
self.add_command('rewrite', lambda parser: rewriter.add_arguments(parser, self.formatter), rewriter.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg='Modify the project definition')
|
2020-02-25 07:15:06 +08:00
|
|
|
self.add_command('compile', mcompile.add_arguments, mcompile.run,
|
|
|
|
help_msg='Build the project')
|
2021-02-21 01:04:01 +08:00
|
|
|
self.add_command('devenv', mdevenv.add_arguments, mdevenv.run,
|
|
|
|
help_msg='Run commands in developer environment')
|
2018-05-13 22:36:58 +08:00
|
|
|
|
2018-09-23 22:51:47 +08:00
|
|
|
# Hidden commands
|
|
|
|
self.add_command('runpython', self.add_runpython_arguments, self.run_runpython_command,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg=argparse.SUPPRESS)
|
2018-12-29 19:53:23 +08:00
|
|
|
self.add_command('unstable-coredata', munstable_coredata.add_arguments, munstable_coredata.run,
|
2019-04-23 20:58:18 +08:00
|
|
|
help_msg=argparse.SUPPRESS)
|
2018-09-23 22:51:47 +08:00
|
|
|
|
2019-04-23 20:58:18 +08:00
|
|
|
def add_command(self, name, add_arguments_func, run_func, help_msg, aliases=None):
|
2019-04-23 05:26:18 +08:00
|
|
|
aliases = aliases or []
|
2018-09-23 22:51:47 +08:00
|
|
|
# FIXME: Cannot have hidden subparser:
|
|
|
|
# https://bugs.python.org/issue22848
|
2019-04-23 20:58:18 +08:00
|
|
|
if help_msg == argparse.SUPPRESS:
|
2019-11-06 21:49:00 +08:00
|
|
|
p = argparse.ArgumentParser(prog='meson ' + name, formatter_class=self.formatter)
|
2018-09-23 22:51:47 +08:00
|
|
|
self.hidden_commands.append(name)
|
|
|
|
else:
|
2019-11-06 21:49:00 +08:00
|
|
|
p = self.subparsers.add_parser(name, help=help_msg, aliases=aliases, formatter_class=self.formatter)
|
2018-05-13 22:36:58 +08:00
|
|
|
add_arguments_func(p)
|
|
|
|
p.set_defaults(run_func=run_func)
|
2019-02-27 22:10:35 +08:00
|
|
|
for i in [name] + aliases:
|
|
|
|
self.commands[i] = p
|
2018-05-13 22:36:58 +08:00
|
|
|
|
|
|
|
def add_runpython_arguments(self, parser):
|
2019-04-21 06:56:14 +08:00
|
|
|
parser.add_argument('-c', action='store_true', dest='eval_arg', default=False)
|
2018-05-13 22:36:58 +08:00
|
|
|
parser.add_argument('script_file')
|
|
|
|
parser.add_argument('script_args', nargs=argparse.REMAINDER)
|
|
|
|
|
|
|
|
def run_runpython_command(self, options):
|
|
|
|
import runpy
|
2019-04-21 06:56:14 +08:00
|
|
|
if options.eval_arg:
|
|
|
|
exec(options.script_file)
|
|
|
|
else:
|
|
|
|
sys.argv[1:] = options.script_args
|
|
|
|
sys.path.insert(0, os.path.dirname(options.script_file))
|
|
|
|
runpy.run_path(options.script_file, run_name='__main__')
|
2018-05-13 22:36:58 +08:00
|
|
|
return 0
|
|
|
|
|
|
|
|
def add_help_arguments(self, parser):
|
|
|
|
parser.add_argument('command', nargs='?')
|
|
|
|
|
|
|
|
def run_help_command(self, options):
|
|
|
|
if options.command:
|
|
|
|
self.commands[options.command].print_help()
|
|
|
|
else:
|
|
|
|
self.parser.print_help()
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def run(self, args):
|
|
|
|
# If first arg is not a known command, assume user wants to run the setup
|
|
|
|
# command.
|
|
|
|
known_commands = list(self.commands.keys()) + ['-h', '--help']
|
2019-04-23 06:54:16 +08:00
|
|
|
if not args or args[0] not in known_commands:
|
2018-05-13 22:36:58 +08:00
|
|
|
args = ['setup'] + args
|
|
|
|
|
2018-09-23 22:51:47 +08:00
|
|
|
# Hidden commands have their own parser instead of using the global one
|
|
|
|
if args[0] in self.hidden_commands:
|
2020-08-31 17:36:20 +08:00
|
|
|
command = args[0]
|
|
|
|
parser = self.commands[command]
|
2018-09-23 22:51:47 +08:00
|
|
|
args = args[1:]
|
|
|
|
else:
|
|
|
|
parser = self.parser
|
|
|
|
|
2018-05-13 22:36:58 +08:00
|
|
|
args = mesonlib.expand_arguments(args)
|
2018-09-23 22:51:47 +08:00
|
|
|
options = parser.parse_args(args)
|
2018-05-13 22:36:58 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
return options.run_func(options)
|
|
|
|
except MesonException as e:
|
|
|
|
mlog.exception(e)
|
|
|
|
logfile = mlog.shutdown()
|
|
|
|
if logfile is not None:
|
|
|
|
mlog.log("\nA full log can be found at", mlog.bold(logfile))
|
|
|
|
if os.environ.get('MESON_FORCE_BACKTRACE'):
|
|
|
|
raise
|
|
|
|
return 1
|
2019-01-29 04:42:42 +08:00
|
|
|
except Exception:
|
2018-05-13 22:36:58 +08:00
|
|
|
if os.environ.get('MESON_FORCE_BACKTRACE'):
|
|
|
|
raise
|
|
|
|
traceback.print_exc()
|
|
|
|
return 2
|
|
|
|
finally:
|
|
|
|
mlog.shutdown()
|
2017-07-07 12:24:19 +08:00
|
|
|
|
2018-09-19 00:39:01 +08:00
|
|
|
def run_script_command(script_name, script_args):
|
|
|
|
# Map script name to module name for those that doesn't match
|
|
|
|
script_map = {'exe': 'meson_exe',
|
|
|
|
'install': 'meson_install',
|
|
|
|
'delsuffix': 'delwithsuffix',
|
|
|
|
'gtkdoc': 'gtkdochelper',
|
|
|
|
'hotdoc': 'hotdochelper',
|
|
|
|
'regencheck': 'regen_checker'}
|
|
|
|
module_name = script_map.get(script_name, script_name)
|
|
|
|
|
|
|
|
try:
|
|
|
|
module = importlib.import_module('mesonbuild.scripts.' + module_name)
|
|
|
|
except ModuleNotFoundError as e:
|
|
|
|
mlog.exception(e)
|
|
|
|
return 1
|
|
|
|
|
|
|
|
try:
|
|
|
|
return module.run(script_args)
|
|
|
|
except MesonException as e:
|
2021-03-05 06:16:11 +08:00
|
|
|
mlog.error(f'Error in {script_name} helper script:')
|
2018-09-19 00:39:01 +08:00
|
|
|
mlog.exception(e)
|
|
|
|
return 1
|
2016-01-16 05:37:22 +08:00
|
|
|
|
2019-01-05 06:27:38 +08:00
|
|
|
def ensure_stdout_accepts_unicode():
|
|
|
|
if sys.stdout.encoding and not sys.stdout.encoding.upper().startswith('UTF-'):
|
|
|
|
if sys.version_info >= (3, 7):
|
|
|
|
sys.stdout.reconfigure(errors='surrogateescape')
|
|
|
|
else:
|
|
|
|
sys.stdout = codecs.getwriter('utf-8')(sys.stdout.detach(),
|
|
|
|
errors='surrogateescape')
|
|
|
|
sys.stdout.encoding = 'UTF-8'
|
|
|
|
if not hasattr(sys.stdout, 'buffer'):
|
|
|
|
sys.stdout.buffer = sys.stdout.raw if hasattr(sys.stdout, 'raw') else sys.stdout
|
|
|
|
|
Set the meson command to use when we know what it is
Instead of using fragile guessing to figure out how to invoke meson,
set the value when meson is run. Also rework how we pass of
meson_script_launcher to regenchecker.py -- it wasn't even being used
With this change, we only need to guess the meson path when running
the tests, and in that case:
1. If MESON_EXE is set in the env, we know how to run meson
for project tests.
2. MESON_EXE is not set, which means we run the configure in-process
for project tests and need to guess what meson to run, so either
- meson.py is found next to run_tests.py, or
- meson, meson.py, or meson.exe is in PATH
Otherwise, you can invoke meson in the following ways:
1. meson is installed, and mesonbuild is available in PYTHONPATH:
- meson, meson.py, meson.exe from PATH
- python3 -m mesonbuild.mesonmain
- python3 /path/to/meson.py
- meson is a shell wrapper to meson.real
2. meson is not installed, and is run from git:
- Absolute path to meson.py
- Relative path to meson.py
- Symlink to meson.py
All these are tested in test_meson_commands.py, except meson.exe since
that involves building the meson msi and installing it.
2018-06-01 15:30:17 +08:00
|
|
|
def run(original_args, mainfile):
|
2020-08-31 01:09:45 +08:00
|
|
|
if sys.version_info < (3, 6):
|
|
|
|
print('Meson works correctly only with python 3.6+.')
|
2021-03-05 06:16:11 +08:00
|
|
|
print(f'You have python {sys.version}.')
|
2016-01-16 03:12:23 +08:00
|
|
|
print('Please update your environment')
|
|
|
|
return 1
|
2018-05-13 22:36:58 +08:00
|
|
|
|
2019-01-05 06:27:38 +08:00
|
|
|
# Meson gets confused if stdout can't output Unicode, if the
|
|
|
|
# locale isn't Unicode, just force stdout to accept it. This tries
|
|
|
|
# to emulate enough of PEP 540 to work elsewhere.
|
|
|
|
ensure_stdout_accepts_unicode()
|
|
|
|
|
2018-06-03 17:30:53 +08:00
|
|
|
# https://github.com/mesonbuild/meson/issues/3653
|
|
|
|
if sys.platform.lower() == 'msys':
|
|
|
|
mlog.error('This python3 seems to be msys/python on MSYS2 Windows, which is known to have path semantics incompatible with Meson')
|
|
|
|
msys2_arch = detect_msys2_arch()
|
|
|
|
if msys2_arch:
|
|
|
|
mlog.error('Please install and use mingw-w64-i686-python3 and/or mingw-w64-x86_64-python3 with Pacman')
|
|
|
|
else:
|
2018-06-04 02:55:06 +08:00
|
|
|
mlog.error('Please download and use Python as detailed at: https://mesonbuild.com/Getting-meson.html')
|
2018-06-03 17:30:53 +08:00
|
|
|
return 2
|
2018-09-19 00:01:35 +08:00
|
|
|
|
Set the meson command to use when we know what it is
Instead of using fragile guessing to figure out how to invoke meson,
set the value when meson is run. Also rework how we pass of
meson_script_launcher to regenchecker.py -- it wasn't even being used
With this change, we only need to guess the meson path when running
the tests, and in that case:
1. If MESON_EXE is set in the env, we know how to run meson
for project tests.
2. MESON_EXE is not set, which means we run the configure in-process
for project tests and need to guess what meson to run, so either
- meson.py is found next to run_tests.py, or
- meson, meson.py, or meson.exe is in PATH
Otherwise, you can invoke meson in the following ways:
1. meson is installed, and mesonbuild is available in PYTHONPATH:
- meson, meson.py, meson.exe from PATH
- python3 -m mesonbuild.mesonmain
- python3 /path/to/meson.py
- meson is a shell wrapper to meson.real
2. meson is not installed, and is run from git:
- Absolute path to meson.py
- Relative path to meson.py
- Symlink to meson.py
All these are tested in test_meson_commands.py, except meson.exe since
that involves building the meson msi and installing it.
2018-06-01 15:30:17 +08:00
|
|
|
# Set the meson command that will be used to run scripts and so on
|
2018-09-18 23:57:15 +08:00
|
|
|
mesonlib.set_meson_command(mainfile)
|
2018-09-19 00:01:35 +08:00
|
|
|
|
2017-11-21 04:15:08 +08:00
|
|
|
args = original_args[:]
|
2018-09-19 00:01:35 +08:00
|
|
|
|
|
|
|
# Special handling of internal commands called from backends, they don't
|
|
|
|
# need to go through argparse.
|
|
|
|
if len(args) >= 2 and args[0] == '--internal':
|
|
|
|
if args[1] == 'regenerate':
|
|
|
|
# Rewrite "meson --internal regenerate" command line to
|
|
|
|
# "meson --reconfigure"
|
|
|
|
args = ['--reconfigure'] + args[2:]
|
|
|
|
else:
|
2018-09-19 00:39:01 +08:00
|
|
|
return run_script_command(args[1], args[2:])
|
2018-09-19 00:01:35 +08:00
|
|
|
|
2018-05-13 22:36:58 +08:00
|
|
|
return CommandLineParser().run(args)
|
Set the meson command to use when we know what it is
Instead of using fragile guessing to figure out how to invoke meson,
set the value when meson is run. Also rework how we pass of
meson_script_launcher to regenchecker.py -- it wasn't even being used
With this change, we only need to guess the meson path when running
the tests, and in that case:
1. If MESON_EXE is set in the env, we know how to run meson
for project tests.
2. MESON_EXE is not set, which means we run the configure in-process
for project tests and need to guess what meson to run, so either
- meson.py is found next to run_tests.py, or
- meson, meson.py, or meson.exe is in PATH
Otherwise, you can invoke meson in the following ways:
1. meson is installed, and mesonbuild is available in PYTHONPATH:
- meson, meson.py, meson.exe from PATH
- python3 -m mesonbuild.mesonmain
- python3 /path/to/meson.py
- meson is a shell wrapper to meson.real
2. meson is not installed, and is run from git:
- Absolute path to meson.py
- Relative path to meson.py
- Symlink to meson.py
All these are tested in test_meson_commands.py, except meson.exe since
that involves building the meson msi and installing it.
2018-06-01 15:30:17 +08:00
|
|
|
|
|
|
|
def main():
|
2021-05-09 03:21:04 +08:00
|
|
|
setup_vsenv()
|
Set the meson command to use when we know what it is
Instead of using fragile guessing to figure out how to invoke meson,
set the value when meson is run. Also rework how we pass of
meson_script_launcher to regenchecker.py -- it wasn't even being used
With this change, we only need to guess the meson path when running
the tests, and in that case:
1. If MESON_EXE is set in the env, we know how to run meson
for project tests.
2. MESON_EXE is not set, which means we run the configure in-process
for project tests and need to guess what meson to run, so either
- meson.py is found next to run_tests.py, or
- meson, meson.py, or meson.exe is in PATH
Otherwise, you can invoke meson in the following ways:
1. meson is installed, and mesonbuild is available in PYTHONPATH:
- meson, meson.py, meson.exe from PATH
- python3 -m mesonbuild.mesonmain
- python3 /path/to/meson.py
- meson is a shell wrapper to meson.real
2. meson is not installed, and is run from git:
- Absolute path to meson.py
- Relative path to meson.py
- Symlink to meson.py
All these are tested in test_meson_commands.py, except meson.exe since
that involves building the meson msi and installing it.
2018-06-01 15:30:17 +08:00
|
|
|
# Always resolve the command path so Ninja can find it for regen, tests, etc.
|
2018-06-24 04:45:09 +08:00
|
|
|
if 'meson.exe' in sys.executable:
|
|
|
|
assert(os.path.isabs(sys.executable))
|
|
|
|
launcher = sys.executable
|
|
|
|
else:
|
|
|
|
launcher = os.path.realpath(sys.argv[0])
|
Set the meson command to use when we know what it is
Instead of using fragile guessing to figure out how to invoke meson,
set the value when meson is run. Also rework how we pass of
meson_script_launcher to regenchecker.py -- it wasn't even being used
With this change, we only need to guess the meson path when running
the tests, and in that case:
1. If MESON_EXE is set in the env, we know how to run meson
for project tests.
2. MESON_EXE is not set, which means we run the configure in-process
for project tests and need to guess what meson to run, so either
- meson.py is found next to run_tests.py, or
- meson, meson.py, or meson.exe is in PATH
Otherwise, you can invoke meson in the following ways:
1. meson is installed, and mesonbuild is available in PYTHONPATH:
- meson, meson.py, meson.exe from PATH
- python3 -m mesonbuild.mesonmain
- python3 /path/to/meson.py
- meson is a shell wrapper to meson.real
2. meson is not installed, and is run from git:
- Absolute path to meson.py
- Relative path to meson.py
- Symlink to meson.py
All these are tested in test_meson_commands.py, except meson.exe since
that involves building the meson msi and installing it.
2018-06-01 15:30:17 +08:00
|
|
|
return run(sys.argv[1:], launcher)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|