2021-02-09 06:32:18 +08:00
# Copyright 2012-2021 The Meson development team
2013-02-25 04:30:02 +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.
2020-06-12 04:04:50 +08:00
from . import mlog , mparser
2019-08-10 05:06:47 +08:00
import pickle , os , uuid
cross: Implement support for loading cross files from system paths
One thing that makes cross compiling with meson a pain is the need for
cross files. The problem is not with cross files themselves (they're
actually rather brilliant in that they allow for a much greater deal of
flexibility than autotools hardcoded paths approach) but that each user
needs to reimplement them themselves, when for most people what they
really want is a cross file that could be provided by their distro, all
they really want is the correct toolchain.
This patch is the first stop to making it easier for distros to ship
their own cross files (and for users to put their's somewhere safe so
they don't get `git clean`ed. It allows the cross files (on Linux and
*BSD) to be stored in home and system paths (~/.config/meson/cross,
/usr/share/meson/cross, and /usr/local/share/meson/cross), and to be
loaded by simply by specificying --cross-file.
With this patch meson will check the locations its always checked first,
(is cross file absolute, or is it relative to $PWD), then will check
~/.config/meson/cross, /usr/local/share/meson/cross,
/usr/share/meson/cross, (or $XDG_CONFIG_PATH and $XDG_DATA_DIRS) for the
files, raising an exception if it cannot find the specified cross file.
Fixes #2283
2017-11-15 07:08:35 +08:00
import sys
2018-12-17 14:08:34 +08:00
from itertools import chain
2020-11-21 06:56:29 +08:00
from pathlib import PurePath
2020-12-08 06:58:23 +08:00
from collections import OrderedDict
2018-11-28 13:36:47 +08:00
from . mesonlib import (
2020-07-16 18:24:17 +08:00
MesonException , EnvironmentException , MachineChoice , PerMachine ,
2021-03-26 05:18:58 +08:00
PerMachineDefaultable , default_libdir , default_libexecdir ,
default_prefix , split_args , OptionKey , OptionType ,
2018-11-28 13:36:47 +08:00
)
2018-05-13 22:36:58 +08:00
from . wrap import WrapMode
2017-03-29 03:03:39 +08:00
import ast
2018-03-16 05:52:56 +08:00
import argparse
2018-10-26 00:19:23 +08:00
import configparser
2019-05-16 04:24:13 +08:00
import enum
2019-09-26 00:40:55 +08:00
import shlex
2020-01-06 22:27:38 +08:00
import typing as T
2019-05-16 04:24:13 +08:00
2020-01-06 22:27:38 +08:00
if T . TYPE_CHECKING :
2019-05-16 04:24:13 +08:00
from . import dependencies
2020-08-22 06:04:37 +08:00
from . compilers . compilers import Compiler , CompileResult # noqa: F401
2019-11-26 04:34:08 +08:00
from . environment import Environment
2020-09-24 06:11:09 +08:00
from . mesonlib import OptionOverrideProxy
2013-02-25 04:44:01 +08:00
2020-09-24 06:11:09 +08:00
OptionDictType = T . Union [ T . Dict [ str , ' UserOption[T.Any] ' ] , OptionOverrideProxy ]
2020-12-01 08:49:18 +08:00
KeyedOptionDictType = T . Union [ T . Dict [ ' OptionKey ' , ' UserOption[T.Any] ' ] , OptionOverrideProxy ]
2020-08-22 06:04:37 +08:00
CompilerCheckCacheKey = T . Tuple [ T . Tuple [ str , . . . ] , str , str , T . Tuple [ str , . . . ] , str ]
2019-05-14 02:50:51 +08:00
2021-05-02 18:34:58 +08:00
version = ' 0.58.999 '
2019-04-10 03:51:38 +08:00
backendlist = [ ' ninja ' , ' vs ' , ' vs2010 ' , ' vs2015 ' , ' vs2017 ' , ' vs2019 ' , ' xcode ' ]
2013-03-02 04:21:02 +08:00
2018-01-03 04:25:24 +08:00
default_yielding = False
2019-05-13 00:38:11 +08:00
# Can't bind this near the class method it seems, sadly.
2020-01-06 22:27:38 +08:00
_T = T . TypeVar ( ' _T ' )
2019-05-13 00:38:11 +08:00
2020-09-16 00:23:05 +08:00
2020-08-03 17:14:52 +08:00
class MesonVersionMismatchException ( MesonException ) :
2020-09-08 21:35:50 +08:00
''' Build directory generated with Meson version is incompatible with current version '''
2020-09-01 20:28:08 +08:00
def __init__ ( self , old_version : str , current_version : str ) - > None :
2020-08-03 17:14:52 +08:00
super ( ) . __init__ ( ' Build directory has been generated with Meson version {} , '
2020-09-08 21:35:50 +08:00
' which is incompatible with the current version {} . '
2020-08-03 17:14:52 +08:00
. format ( old_version , current_version ) )
self . old_version = old_version
self . current_version = current_version
2020-01-06 22:27:38 +08:00
class UserOption ( T . Generic [ _T ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , choices : T . Optional [ T . Union [ str , T . List [ _T ] ] ] , yielding : T . Optional [ bool ] ) :
2015-11-03 09:31:56 +08:00
super ( ) . __init__ ( )
2015-11-10 06:45:05 +08:00
self . choices = choices
2015-11-03 09:31:56 +08:00
self . description = description
2018-01-03 04:25:24 +08:00
if yielding is None :
yielding = default_yielding
if not isinstance ( yielding , bool ) :
raise MesonException ( ' Value of " yielding " must be a boolean. ' )
self . yielding = yielding
2015-11-03 09:31:56 +08:00
2020-09-01 20:28:08 +08:00
def printable_value ( self ) - > T . Union [ str , int , bool , T . List [ T . Union [ str , int , bool ] ] ] :
assert isinstance ( self . value , ( str , int , bool , list ) )
2019-01-06 05:12:02 +08:00
return self . value
2017-03-11 01:37:45 +08:00
# Check that the input is a valid value and return the
# "cleaned" or "native" version. For example the Boolean
# option could take the string "true" and return True.
2020-01-06 22:27:38 +08:00
def validate_value ( self , value : T . Any ) - > _T :
2017-03-11 01:37:45 +08:00
raise RuntimeError ( ' Derived option class did not override validate_value. ' )
2020-09-01 20:28:08 +08:00
def set_value ( self , newvalue : T . Any ) - > None :
2018-04-10 02:30:50 +08:00
self . value = self . validate_value ( newvalue )
2019-05-13 00:38:11 +08:00
class UserStringOption ( UserOption [ str ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , value : T . Any , yielding : T . Optional [ bool ] = None ) :
super ( ) . __init__ ( description , None , yielding )
2015-11-03 09:31:56 +08:00
self . set_value ( value )
2020-09-01 20:28:08 +08:00
def validate_value ( self , value : T . Any ) - > str :
2015-11-04 06:32:09 +08:00
if not isinstance ( value , str ) :
2019-05-13 00:38:11 +08:00
raise MesonException ( ' Value " %s " for string option is not a string. ' % str ( value ) )
2017-03-11 01:37:45 +08:00
return value
2019-05-13 00:38:11 +08:00
class UserBooleanOption ( UserOption [ bool ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , value , yielding : T . Optional [ bool ] = None ) - > None :
2019-05-13 00:38:11 +08:00
super ( ) . __init__ ( description , [ True , False ] , yielding )
2015-11-03 09:31:56 +08:00
self . set_value ( value )
2019-05-13 00:38:11 +08:00
def __bool__ ( self ) - > bool :
2016-05-31 01:11:18 +08:00
return self . value
2020-09-01 20:28:08 +08:00
def validate_value ( self , value : T . Any ) - > bool :
2018-04-10 02:30:50 +08:00
if isinstance ( value , bool ) :
return value
2020-09-01 20:28:08 +08:00
if not isinstance ( value , str ) :
2021-03-05 06:16:11 +08:00
raise MesonException ( f ' Value { value } cannot be converted to a boolean ' )
2018-04-10 02:30:50 +08:00
if value . lower ( ) == ' true ' :
return True
if value . lower ( ) == ' false ' :
return False
raise MesonException ( ' Value %s is not boolean (true or false). ' % value )
2017-03-11 01:37:45 +08:00
2019-05-13 00:38:11 +08:00
class UserIntegerOption ( UserOption [ int ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , value : T . Any , yielding : T . Optional [ bool ] = None ) :
2019-12-22 02:40:39 +08:00
min_value , max_value , default_value = value
2017-08-03 19:34:24 +08:00
self . min_value = min_value
self . max_value = max_value
2018-02-04 03:30:44 +08:00
c = [ ]
if min_value is not None :
c . append ( ' >= ' + str ( min_value ) )
if max_value is not None :
c . append ( ' <= ' + str ( max_value ) )
2020-05-04 03:54:37 +08:00
choices = ' , ' . join ( c )
super ( ) . __init__ ( description , choices , yielding )
self . set_value ( default_value )
2017-08-03 19:34:24 +08:00
2020-09-01 20:28:08 +08:00
def validate_value ( self , value : T . Any ) - > int :
2018-04-10 02:30:50 +08:00
if isinstance ( value , str ) :
value = self . toint ( value )
if not isinstance ( value , int ) :
2017-08-03 19:34:24 +08:00
raise MesonException ( ' New value for integer option is not an integer. ' )
2018-04-10 02:30:50 +08:00
if self . min_value is not None and value < self . min_value :
raise MesonException ( ' New value %d is less than minimum value %d . ' % ( value , self . min_value ) )
if self . max_value is not None and value > self . max_value :
raise MesonException ( ' New value %d is more than maximum value %d . ' % ( value , self . max_value ) )
return value
2017-08-03 19:34:24 +08:00
2020-09-01 20:28:08 +08:00
def toint ( self , valuestring : str ) - > int :
2017-08-03 19:34:24 +08:00
try :
return int ( valuestring )
2018-03-09 09:20:26 +08:00
except ValueError :
2019-11-06 21:49:00 +08:00
raise MesonException ( ' Value string " %s " is not convertible to an integer. ' % valuestring )
2017-08-03 19:34:24 +08:00
2021-02-02 01:48:48 +08:00
class OctalInt ( int ) :
# NinjaBackend.get_user_option_args uses str() to converts it to a command line option
# UserUmaskOption.toint() uses int(str, 8) to convert it to an integer
# So we need to use oct instead of dec here if we do not want values to be misinterpreted.
def __str__ ( self ) :
return oct ( int ( self ) )
class UserUmaskOption ( UserIntegerOption , UserOption [ T . Union [ str , OctalInt ] ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , value : T . Any , yielding : T . Optional [ bool ] = None ) :
2019-12-22 02:40:39 +08:00
super ( ) . __init__ ( description , ( 0 , 0o777 , value ) , yielding )
2018-05-13 22:36:58 +08:00
self . choices = [ ' preserve ' , ' 0000-0777 ' ]
2018-03-10 02:38:02 +08:00
2020-09-01 20:28:08 +08:00
def printable_value ( self ) - > str :
2019-01-06 05:12:02 +08:00
if self . value == ' preserve ' :
return self . value
return format ( self . value , ' 04o ' )
2021-02-02 01:48:48 +08:00
def validate_value ( self , value : T . Any ) - > T . Union [ str , OctalInt ] :
2018-05-13 22:36:58 +08:00
if value is None or value == ' preserve ' :
2019-01-02 04:01:32 +08:00
return ' preserve '
2021-02-02 01:48:48 +08:00
return OctalInt ( super ( ) . validate_value ( value ) )
2018-03-10 02:38:02 +08:00
2021-02-02 01:48:48 +08:00
def toint ( self , valuestring : T . Union [ str , OctalInt ] ) - > int :
2018-03-10 02:38:02 +08:00
try :
return int ( valuestring , 8 )
except ValueError as e :
2021-03-05 06:16:11 +08:00
raise MesonException ( f ' Invalid mode: { e } ' )
2018-03-10 02:38:02 +08:00
2019-05-13 00:38:11 +08:00
class UserComboOption ( UserOption [ str ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , choices : T . List [ str ] , value : T . Any , yielding : T . Optional [ bool ] = None ) :
2019-05-13 00:38:11 +08:00
super ( ) . __init__ ( description , choices , yielding )
2015-11-03 09:31:56 +08:00
if not isinstance ( self . choices , list ) :
raise MesonException ( ' Combo choices must be an array. ' )
for i in self . choices :
if not isinstance ( i , str ) :
raise MesonException ( ' Combo choice elements must be strings. ' )
self . set_value ( value )
2020-09-01 20:28:08 +08:00
def validate_value ( self , value : T . Any ) - > str :
2017-03-11 01:37:45 +08:00
if value not in self . choices :
2020-06-17 02:11:15 +08:00
if isinstance ( value , bool ) :
_type = ' boolean '
elif isinstance ( value , ( int , float ) ) :
_type = ' number '
else :
_type = ' string '
2021-03-05 06:16:11 +08:00
optionsstring = ' , ' . join ( [ f ' " { item } " ' for item in self . choices ] )
2020-06-17 02:11:15 +08:00
raise MesonException ( ' Value " {} " (of type " {} " ) for combo option " {} " is not one of the choices. '
' Possible choices are (as string): {} . ' . format (
value , _type , self . description , optionsstring ) )
2017-03-13 04:13:26 +08:00
return value
2017-03-11 01:37:45 +08:00
2020-01-06 22:27:38 +08:00
class UserArrayOption ( UserOption [ T . List [ str ] ] ) :
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , value : T . Union [ str , T . List [ str ] ] , split_args : bool = False , user_input : bool = False , allow_dups : bool = False , * * kwargs : T . Any ) - > None :
2019-05-13 00:38:11 +08:00
super ( ) . __init__ ( description , kwargs . get ( ' choices ' , [ ] ) , yielding = kwargs . get ( ' yielding ' , None ) )
2019-08-10 05:06:47 +08:00
self . split_args = split_args
2018-08-21 04:16:02 +08:00
self . allow_dups = allow_dups
2018-05-13 22:36:58 +08:00
self . value = self . validate_value ( value , user_input = user_input )
2017-09-30 01:07:29 +08:00
2020-09-01 20:28:08 +08:00
def validate_value ( self , value : T . Union [ str , T . List [ str ] ] , user_input : bool = True ) - > T . List [ str ] :
2017-09-30 01:07:29 +08:00
# User input is for options defined on the command line (via -D
2017-11-28 04:16:32 +08:00
# options). Users can put their input in as a comma separated
2017-09-30 01:07:29 +08:00
# string, but for defining options in meson_options.txt the format
# should match that of a combo
2018-05-13 22:36:58 +08:00
if not user_input and isinstance ( value , str ) and not value . startswith ( ' [ ' ) :
raise MesonException ( ' Value does not define an array: ' + value )
if isinstance ( value , str ) :
2017-11-28 04:16:32 +08:00
if value . startswith ( ' [ ' ) :
2019-12-06 12:45:38 +08:00
try :
newvalue = ast . literal_eval ( value )
except ValueError :
2021-03-05 06:16:11 +08:00
raise MesonException ( f ' malformed option { value } ' )
2018-06-05 23:33:36 +08:00
elif value == ' ' :
newvalue = [ ]
2017-11-28 04:16:32 +08:00
else :
2019-08-10 05:06:47 +08:00
if self . split_args :
newvalue = split_args ( value )
2018-05-13 22:36:58 +08:00
else :
newvalue = [ v . strip ( ) for v in value . split ( ' , ' ) ]
2018-05-13 22:36:58 +08:00
elif isinstance ( value , list ) :
newvalue = value
else :
2021-03-05 06:16:11 +08:00
raise MesonException ( f ' " { newvalue } " should be a string array, but it is not ' )
2018-05-13 22:36:58 +08:00
2018-08-21 04:16:02 +08:00
if not self . allow_dups and len ( set ( newvalue ) ) != len ( newvalue ) :
2019-05-13 00:38:11 +08:00
msg = ' Duplicated values in array option is deprecated. ' \
' This will become a hard error in the future. '
2018-07-07 01:50:13 +08:00
mlog . deprecation ( msg )
2015-11-03 09:31:56 +08:00
for i in newvalue :
if not isinstance ( i , str ) :
2021-03-05 06:02:31 +08:00
raise MesonException ( ' String array element " {} " is not a string. ' . format ( str ( newvalue ) ) )
2017-09-30 01:07:29 +08:00
if self . choices :
bad = [ x for x in newvalue if x not in self . choices ]
if bad :
raise MesonException ( ' Options " {} " are not in allowed choices: " {} " ' . format (
' , ' . join ( bad ) , ' , ' . join ( self . choices ) ) )
2017-03-11 01:37:45 +08:00
return newvalue
2021-03-24 11:52:49 +08:00
def extend_value ( self , value : T . Union [ str , T . List [ str ] ] ) - > None :
""" Extend the value with an additional value. """
new = self . validate_value ( value )
self . set_value ( self . value + new )
2018-05-03 07:01:05 +08:00
2018-04-11 22:13:14 +08:00
class UserFeatureOption ( UserComboOption ) :
static_choices = [ ' enabled ' , ' disabled ' , ' auto ' ]
2020-09-01 20:28:08 +08:00
def __init__ ( self , description : str , value : T . Any , yielding : T . Optional [ bool ] = None ) :
2019-05-13 00:38:11 +08:00
super ( ) . __init__ ( description , self . static_choices , value , yielding )
2018-04-11 22:13:14 +08:00
2020-09-01 20:28:08 +08:00
def is_enabled ( self ) - > bool :
2018-04-11 22:13:14 +08:00
return self . value == ' enabled '
2020-09-01 20:28:08 +08:00
def is_disabled ( self ) - > bool :
2018-04-11 22:13:14 +08:00
return self . value == ' disabled '
2020-09-01 20:28:08 +08:00
def is_auto ( self ) - > bool :
2018-04-11 22:13:14 +08:00
return self . value == ' auto '
2020-01-06 22:27:38 +08:00
if T . TYPE_CHECKING :
CacheKeyType = T . Tuple [ T . Tuple [ T . Any , . . . ] , . . . ]
SubCacheKeyType = T . Tuple [ T . Any , . . . ]
2019-05-16 04:24:13 +08:00
class DependencyCacheType ( enum . Enum ) :
OTHER = 0
PKG_CONFIG = 1
2019-05-23 03:16:31 +08:00
CMAKE = 2
2019-05-16 04:24:13 +08:00
@classmethod
def from_type ( cls , dep : ' dependencies.Dependency ' ) - > ' DependencyCacheType ' :
from . import dependencies
# As more types gain search overrides they'll need to be added here
if isinstance ( dep , dependencies . PkgConfigDependency ) :
return cls . PKG_CONFIG
2019-05-23 03:16:31 +08:00
if isinstance ( dep , dependencies . CMakeDependency ) :
return cls . CMAKE
2019-05-16 04:24:13 +08:00
return cls . OTHER
class DependencySubCache :
def __init__ ( self , type_ : DependencyCacheType ) :
self . types = [ type_ ]
2020-01-06 22:27:38 +08:00
self . __cache = { } # type: T.Dict[SubCacheKeyType, dependencies.Dependency]
2019-05-16 04:24:13 +08:00
def __getitem__ ( self , key : ' SubCacheKeyType ' ) - > ' dependencies.Dependency ' :
return self . __cache [ key ]
def __setitem__ ( self , key : ' SubCacheKeyType ' , value : ' dependencies.Dependency ' ) - > None :
self . __cache [ key ] = value
def __contains__ ( self , key : ' SubCacheKeyType ' ) - > bool :
return key in self . __cache
2020-01-06 22:27:38 +08:00
def values ( self ) - > T . Iterable [ ' dependencies.Dependency ' ] :
2019-05-16 04:24:13 +08:00
return self . __cache . values ( )
class DependencyCache :
""" Class that stores a cache of dependencies.
This class is meant to encapsulate the fact that we need multiple keys to
successfully lookup by providing a simple get / put interface .
"""
2020-12-05 08:09:10 +08:00
def __init__ ( self , builtins : ' KeyedOptionDictType ' , for_machine : MachineChoice ) :
2020-01-06 22:27:38 +08:00
self . __cache = OrderedDict ( ) # type: T.MutableMapping[CacheKeyType, DependencySubCache]
2020-12-05 08:09:10 +08:00
self . __builtins = builtins
self . __pkg_conf_key = OptionKey ( ' pkg_config_path ' , machine = for_machine )
self . __cmake_key = OptionKey ( ' cmake_prefix_path ' , machine = for_machine )
2019-05-16 04:24:13 +08:00
2020-01-06 22:27:38 +08:00
def __calculate_subkey ( self , type_ : DependencyCacheType ) - > T . Tuple [ T . Any , . . . ] :
2019-05-16 04:24:13 +08:00
if type_ is DependencyCacheType . PKG_CONFIG :
2020-12-05 08:09:10 +08:00
return tuple ( self . __builtins [ self . __pkg_conf_key ] . value )
2019-05-23 03:16:31 +08:00
elif type_ is DependencyCacheType . CMAKE :
2020-12-05 08:09:10 +08:00
return tuple ( self . __builtins [ self . __cmake_key ] . value )
2019-05-16 04:24:13 +08:00
assert type_ is DependencyCacheType . OTHER , ' Someone forgot to update subkey calculations for a new type '
return tuple ( )
2020-01-06 22:27:38 +08:00
def __iter__ ( self ) - > T . Iterator [ ' CacheKeyType ' ] :
2019-05-16 04:24:13 +08:00
return self . keys ( )
def put ( self , key : ' CacheKeyType ' , dep : ' dependencies.Dependency ' ) - > None :
t = DependencyCacheType . from_type ( dep )
if key not in self . __cache :
self . __cache [ key ] = DependencySubCache ( t )
subkey = self . __calculate_subkey ( t )
self . __cache [ key ] [ subkey ] = dep
2020-01-06 22:27:38 +08:00
def get ( self , key : ' CacheKeyType ' ) - > T . Optional [ ' dependencies.Dependency ' ] :
2019-05-16 04:24:13 +08:00
""" Get a value from the cache.
If there is no cache entry then None will be returned .
"""
try :
val = self . __cache [ key ]
except KeyError :
return None
for t in val . types :
subkey = self . __calculate_subkey ( t )
try :
return val [ subkey ]
except KeyError :
pass
return None
2020-01-06 22:27:38 +08:00
def values ( self ) - > T . Iterator [ ' dependencies.Dependency ' ] :
2019-05-16 04:24:13 +08:00
for c in self . __cache . values ( ) :
yield from c . values ( )
2020-01-06 22:27:38 +08:00
def keys ( self ) - > T . Iterator [ ' CacheKeyType ' ] :
2019-05-16 04:24:13 +08:00
return iter ( self . __cache . keys ( ) )
2020-01-06 22:27:38 +08:00
def items ( self ) - > T . Iterator [ T . Tuple [ ' CacheKeyType ' , T . List [ ' dependencies.Dependency ' ] ] ] :
2019-05-16 04:24:13 +08:00
for k , v in self . __cache . items ( ) :
vs = [ ]
for t in v . types :
subkey = self . __calculate_subkey ( t )
if subkey in v :
vs . append ( v [ subkey ] )
yield k , vs
def clear ( self ) - > None :
self . __cache . clear ( )
2019-04-15 13:23:10 +08:00
# Can't bind this near the class method it seems, sadly.
2020-01-06 22:27:38 +08:00
_V = T . TypeVar ( ' _V ' )
2019-04-15 13:23:10 +08:00
2013-04-01 19:08:54 +08:00
# This class contains all data that must persist over multiple
# invocations of Meson. It is roughly the same thing as
# cmakecache.
2017-01-17 21:13:03 +08:00
class CoreData :
2013-06-20 23:07:03 +08:00
2020-09-02 01:36:21 +08:00
def __init__ ( self , options : argparse . Namespace , scratch_dir : str , meson_command : T . List [ str ] ) :
2018-01-31 18:27:37 +08:00
self . lang_guids = {
' default ' : ' 8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942 ' ,
' c ' : ' 8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942 ' ,
' cpp ' : ' 8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942 ' ,
' test ' : ' 3AC096D0-A1C2-E12C-1390-A8335801FDAB ' ,
' directory ' : ' 2150E333-8FDC-42A3-9474-1A3956D46DE8 ' ,
}
2014-03-19 05:54:03 +08:00
self . test_guid = str ( uuid . uuid4 ( ) ) . upper ( )
2015-11-05 02:00:04 +08:00
self . regen_guid = str ( uuid . uuid4 ( ) ) . upper ( )
2018-07-17 19:28:38 +08:00
self . install_guid = str ( uuid . uuid4 ( ) ) . upper ( )
2020-09-02 01:36:21 +08:00
self . meson_command = meson_command
2014-03-18 04:09:28 +08:00
self . target_guids = { }
2013-03-02 04:21:02 +08:00
self . version = version
2020-12-05 09:01:45 +08:00
self . options : ' KeyedOptionDictType ' = { }
2019-06-23 22:53:17 +08:00
self . cross_files = self . __load_config_files ( options , scratch_dir , ' cross ' )
2020-09-19 05:23:17 +08:00
self . compilers = PerMachine ( OrderedDict ( ) , OrderedDict ( ) ) # type: PerMachine[T.Dict[str, Compiler]]
2019-05-16 05:02:14 +08:00
2021-04-23 05:59:04 +08:00
# Set of subprojects that have already been initialized once, this is
# required to be stored and reloaded with the coredata, as we don't
# want to overwrite options for such subprojects.
self . initialized_subprojects : T . Set [ str ] = set ( )
2021-03-26 05:18:58 +08:00
# For host == build configuraitons these caches should be the same.
2021-03-26 06:13:18 +08:00
self . deps : PerMachine [ DependencyCache ] = PerMachineDefaultable . default (
self . is_cross_build ( ) ,
DependencyCache ( self . options , MachineChoice . BUILD ) ,
DependencyCache ( self . options , MachineChoice . HOST ) )
2021-03-26 05:18:58 +08:00
2020-08-22 06:04:37 +08:00
self . compiler_check_cache = OrderedDict ( ) # type: T.Dict[CompilerCheckCacheKey, compiler.CompileResult]
2020-02-07 01:10:01 +08:00
2016-07-03 23:31:46 +08:00
# Only to print a warning if it changes between Meson invocations.
2019-06-23 22:53:17 +08:00
self . config_files = self . __load_config_files ( options , scratch_dir , ' native ' )
2020-05-14 13:27:04 +08:00
self . builtin_options_libdir_cross_fixup ( )
2019-07-19 22:34:11 +08:00
self . init_builtins ( ' ' )
2018-05-03 07:01:05 +08:00
@staticmethod
2020-01-06 22:27:38 +08:00
def __load_config_files ( options : argparse . Namespace , scratch_dir : str , ftype : str ) - > T . List [ str ] :
2019-03-19 01:27:57 +08:00
# Need to try and make the passed filenames absolute because when the
# files are parsed later we'll have chdir()d.
2019-06-23 22:53:17 +08:00
if ftype == ' cross ' :
filenames = options . cross_file
else :
filenames = options . native_file
2018-05-03 07:01:05 +08:00
if not filenames :
return [ ]
2019-04-22 04:10:02 +08:00
2020-01-06 22:27:38 +08:00
found_invalid = [ ] # type: T.List[str]
missing = [ ] # type: T.List[str]
real = [ ] # type: T.List[str]
2019-06-23 22:53:17 +08:00
for i , f in enumerate ( filenames ) :
2019-04-22 04:10:02 +08:00
f = os . path . expanduser ( os . path . expandvars ( f ) )
if os . path . exists ( f ) :
2019-06-23 22:53:17 +08:00
if os . path . isfile ( f ) :
real . append ( os . path . abspath ( f ) )
2019-07-30 07:11:54 +08:00
continue
2019-06-23 22:53:17 +08:00
elif os . path . isdir ( f ) :
2019-07-30 07:11:54 +08:00
found_invalid . append ( os . path . abspath ( f ) )
2019-06-23 22:53:17 +08:00
else :
# in this case we've been passed some kind of pipe, copy
# the contents of that file into the meson private (scratch)
# directory so that it can be re-read when wiping/reconfiguring
2021-03-05 06:16:11 +08:00
copy = os . path . join ( scratch_dir , f ' { uuid . uuid4 ( ) } . { ftype } .ini ' )
2021-03-05 06:02:31 +08:00
with open ( f ) as rf :
2019-06-23 22:53:17 +08:00
with open ( copy , ' w ' ) as wf :
wf . write ( rf . read ( ) )
real . append ( copy )
# Also replace the command line argument, as the pipe
2019-11-06 21:49:00 +08:00
# probably won't exist on reconfigure
2019-06-23 22:53:17 +08:00
filenames [ i ] = copy
2019-07-30 07:11:54 +08:00
continue
if sys . platform != ' win32 ' :
2019-04-22 04:10:02 +08:00
paths = [
os . environ . get ( ' XDG_DATA_HOME ' , os . path . expanduser ( ' ~/.local/share ' ) ) ,
] + os . environ . get ( ' XDG_DATA_DIRS ' , ' /usr/local/share:/usr/share ' ) . split ( ' : ' )
for path in paths :
path_to_try = os . path . join ( path , ' meson ' , ftype , f )
if os . path . isfile ( path_to_try ) :
real . append ( path_to_try )
break
else :
2019-07-30 07:11:54 +08:00
missing . append ( f )
else :
missing . append ( f )
2019-04-22 04:10:02 +08:00
2019-07-30 07:11:54 +08:00
if missing :
if found_invalid :
mlog . log ( ' Found invalid candidates for ' , ftype , ' file: ' , * found_invalid )
mlog . log ( ' Could not find any valid candidate for ' , ftype , ' files: ' , * missing )
2021-03-05 06:16:11 +08:00
raise MesonException ( f ' Cannot find specified { ftype } file: { f } ' )
2019-04-22 04:10:02 +08:00
return real
2013-02-25 05:11:14 +08:00
2020-05-14 13:27:04 +08:00
def builtin_options_libdir_cross_fixup ( self ) :
2018-12-28 05:43:35 +08:00
# By default set libdir to "lib" when cross compiling since
# getting the "system default" is always wrong on multiarch
# platforms as it gets a value like lib/x86_64-linux-gnu.
2019-03-19 01:27:57 +08:00
if self . cross_files :
2020-12-05 08:09:10 +08:00
BUILTIN_OPTIONS [ OptionKey ( ' libdir ' ) ] . default = ' lib '
2018-12-28 05:43:35 +08:00
2017-01-16 18:38:00 +08:00
def sanitize_prefix ( self , prefix ) :
2019-07-07 15:53:38 +08:00
prefix = os . path . expanduser ( prefix )
2017-01-16 18:38:00 +08:00
if not os . path . isabs ( prefix ) :
raise MesonException ( ' prefix value {!r} must be an absolute path '
' ' . format ( prefix ) )
if prefix . endswith ( ' / ' ) or prefix . endswith ( ' \\ ' ) :
# On Windows we need to preserve the trailing slash if the
# string is of type 'C:\' because 'C:' is not an absolute path.
if len ( prefix ) == 3 and prefix [ 1 ] == ' : ' :
pass
2017-11-23 06:21:08 +08:00
# If prefix is a single character, preserve it since it is
# the root directory.
elif len ( prefix ) == 1 :
pass
2017-01-16 18:38:00 +08:00
else :
prefix = prefix [ : - 1 ]
return prefix
2020-12-05 08:09:10 +08:00
def sanitize_dir_option_value ( self , prefix : str , option : OptionKey , value : T . Any ) - > T . Any :
2017-01-16 18:38:00 +08:00
'''
If the option is an installation directory option and the value is an
absolute path , check that it resides within prefix and return the value
as a path relative to the prefix .
This way everyone can do f . ex , get_option ( ' libdir ' ) and be sure to get
the library directory relative to prefix .
2020-01-31 05:07:44 +08:00
. as_posix ( ) keeps the posix - like file seperators Meson uses .
2017-01-16 18:38:00 +08:00
'''
2020-01-31 05:07:44 +08:00
try :
value = PurePath ( value )
except TypeError :
return value
2020-12-05 08:09:10 +08:00
if option . name . endswith ( ' dir ' ) and value . is_absolute ( ) and \
option not in BULITIN_DIR_NOPREFIX_OPTIONS :
2017-01-16 18:38:00 +08:00
# Value must be a subdir of the prefix
2017-02-03 21:27:57 +08:00
# commonpath will always return a path in the native format, so we
# must use pathlib.PurePath to do the same conversion before
# comparing.
2020-12-05 08:09:10 +08:00
msg = ( ' The value of the \' {!s} \' option is \' {!s} \' which must be a '
2020-01-31 05:07:44 +08:00
' subdir of the prefix {!r} . \n Note that if you pass a '
' relative path, it is assumed to be a subdir of prefix. ' )
# os.path.commonpath doesn't understand case-insensitive filesystems,
# but PurePath().relative_to() does.
try :
value = value . relative_to ( prefix )
except ValueError :
raise MesonException ( msg . format ( option , value , prefix ) )
if ' .. ' in str ( value ) :
raise MesonException ( msg . format ( option , value , prefix ) )
return value . as_posix ( )
2017-01-16 18:38:00 +08:00
2020-12-05 08:09:10 +08:00
def init_builtins ( self , subproject : str ) - > None :
2018-05-13 22:36:58 +08:00
# Create builtin options with default values
2020-08-04 00:00:09 +08:00
for key , opt in BUILTIN_OPTIONS . items ( ) :
2020-12-05 09:01:45 +08:00
self . add_builtin_option ( self . options , key . evolve ( subproject = subproject ) , opt )
2019-04-15 13:23:10 +08:00
for for_machine in iter ( MachineChoice ) :
2020-08-04 00:00:09 +08:00
for key , opt in BUILTIN_OPTIONS_PER_MACHINE . items ( ) :
2020-12-05 09:01:45 +08:00
self . add_builtin_option ( self . options , key . evolve ( subproject = subproject , machine = for_machine ) , opt )
2019-07-19 22:34:11 +08:00
2020-12-05 08:09:10 +08:00
@staticmethod
def add_builtin_option ( opts_map : ' KeyedOptionDictType ' , key : OptionKey ,
opt : ' BuiltinOption ' ) - > None :
if key . subproject :
2019-07-19 22:34:11 +08:00
if opt . yielding :
# This option is global and not per-subproject
return
2020-12-05 08:09:10 +08:00
value = opts_map [ key . as_root ( ) ] . value
2019-07-19 22:34:11 +08:00
else :
value = None
2020-12-05 08:09:10 +08:00
opts_map [ key ] = opt . init_option ( key , value , default_prefix ( ) )
2015-11-03 09:03:54 +08:00
2020-09-01 20:28:08 +08:00
def init_backend_options ( self , backend_name : str ) - > None :
2017-08-03 19:34:24 +08:00
if backend_name == ' ninja ' :
2020-12-05 09:01:45 +08:00
self . options [ OptionKey ( ' backend_max_links ' ) ] = UserIntegerOption (
2020-12-02 07:16:14 +08:00
' Maximum number of linker processes to run or 0 for no '
' limit ' ,
( 0 , None , 0 ) )
2018-05-21 07:27:57 +08:00
elif backend_name . startswith ( ' vs ' ) :
2020-12-05 09:01:45 +08:00
self . options [ OptionKey ( ' backend_startup_project ' ) ] = UserStringOption (
2020-12-02 07:16:14 +08:00
' Default project to execute in Visual Studio ' ,
' ' )
2018-05-21 07:27:57 +08:00
2020-12-05 09:01:45 +08:00
def get_option ( self , key : OptionKey ) - > T . Union [ str , int , bool , WrapMode ] :
try :
v = self . options [ key ] . value
2020-12-05 08:09:10 +08:00
if key . name == ' wrap_mode ' :
2020-12-05 09:01:45 +08:00
return WrapMode [ v ]
return v
except KeyError :
pass
try :
v = self . options [ key . as_root ( ) ]
if v . yielding :
if key . name == ' wrap_mode ' :
return WrapMode [ v . value ]
return v . value
except KeyError :
pass
raise MesonException ( f ' Tried to get unknown builtin option { str ( key ) } ' )
def set_option ( self , key : OptionKey , value ) - > None :
if key . is_builtin ( ) :
2020-12-05 08:09:10 +08:00
if key . name == ' prefix ' :
2019-04-15 13:23:10 +08:00
value = self . sanitize_prefix ( value )
else :
2020-12-05 09:01:45 +08:00
prefix = self . options [ OptionKey ( ' prefix ' ) ] . value
2020-12-05 08:09:10 +08:00
value = self . sanitize_dir_option_value ( prefix , key , value )
2019-04-15 13:23:10 +08:00
2020-12-05 09:01:45 +08:00
try :
self . options [ key ] . set_value ( value )
except KeyError :
raise MesonException ( f ' Tried to set unknown builtin option { str ( key ) } ' )
2018-08-19 01:39:47 +08:00
2020-12-05 09:01:45 +08:00
if key . name == ' buildtype ' :
self . _set_others_from_buildtype ( value )
2021-01-13 03:51:19 +08:00
def get_nondefault_buildtype_args ( self ) :
result = [ ]
value = self . options [ OptionKey ( ' buildtype ' ) ] . value
if value == ' plain ' :
opt = ' 0 '
debug = False
elif value == ' debug ' :
opt = ' 0 '
debug = True
elif value == ' debugoptimized ' :
opt = ' 2 '
debug = True
elif value == ' release ' :
opt = ' 3 '
debug = False
elif value == ' minsize ' :
opt = ' s '
debug = True
else :
assert ( value == ' custom ' )
return [ ]
actual_opt = self . options [ OptionKey ( ' optimization ' ) ] . value
actual_debug = self . options [ OptionKey ( ' debug ' ) ] . value
if actual_opt != opt :
result . append ( ( ' optimization ' , actual_opt , opt ) )
if actual_debug != debug :
result . append ( ( ' debug ' , actual_debug , debug ) )
return result
2020-12-05 09:01:45 +08:00
def _set_others_from_buildtype ( self , value : str ) - > None :
2018-08-19 01:39:47 +08:00
if value == ' plain ' :
opt = ' 0 '
debug = False
elif value == ' debug ' :
opt = ' 0 '
debug = True
elif value == ' debugoptimized ' :
opt = ' 2 '
debug = True
elif value == ' release ' :
opt = ' 3 '
debug = False
elif value == ' minsize ' :
opt = ' s '
debug = True
else :
assert ( value == ' custom ' )
return
2020-12-05 09:01:45 +08:00
self . options [ OptionKey ( ' optimization ' ) ] . set_value ( opt )
self . options [ OptionKey ( ' debug ' ) ] . set_value ( debug )
2018-08-19 01:39:47 +08:00
2019-06-13 06:08:45 +08:00
@staticmethod
2020-12-05 09:01:45 +08:00
def is_per_machine_option ( optname : OptionKey ) - > bool :
2020-12-01 04:10:40 +08:00
if optname . name in BUILTIN_OPTIONS_PER_MACHINE :
2020-08-03 22:05:38 +08:00
return True
2020-12-01 04:10:40 +08:00
return optname . lang is not None
2020-08-03 22:05:38 +08:00
2020-12-05 08:09:10 +08:00
def validate_option_value ( self , option_name : OptionKey , override_value ) :
2020-12-05 09:01:45 +08:00
try :
opt = self . options [ option_name ]
except KeyError :
raise MesonException ( f ' Tried to validate unknown option { str ( option_name ) } ' )
try :
return opt . validate_value ( override_value )
except MesonException as e :
raise type ( e ) ( ( ' Validation failed for option %s : ' % option_name ) + str ( e ) ) \
. with_traceback ( sys . exc_info ( ) [ 2 ] )
2017-03-11 01:37:45 +08:00
2020-12-03 08:02:03 +08:00
def get_external_args ( self , for_machine : MachineChoice , lang : str ) - > T . Union [ str , T . List [ str ] ] :
2020-12-05 09:01:45 +08:00
return self . options [ OptionKey ( ' args ' , machine = for_machine , lang = lang ) ] . value
2018-05-13 22:36:58 +08:00
2020-12-03 08:02:03 +08:00
def get_external_link_args ( self , for_machine : MachineChoice , lang : str ) - > T . Union [ str , T . List [ str ] ] :
2020-12-05 09:01:45 +08:00
return self . options [ OptionKey ( ' link_args ' , machine = for_machine , lang = lang ) ] . value
2018-05-13 22:36:58 +08:00
2020-12-05 09:01:45 +08:00
def update_project_options ( self , options : ' KeyedOptionDictType ' ) - > None :
for key , value in options . items ( ) :
if not key . is_project ( ) :
continue
if key not in self . options :
self . options [ key ] = value
2020-09-15 02:36:38 +08:00
continue
2020-12-05 09:01:45 +08:00
oldval = self . options [ key ]
2020-09-15 02:36:38 +08:00
if type ( oldval ) != type ( value ) :
2020-12-05 09:01:45 +08:00
self . options [ key ] = value
2020-09-15 02:36:38 +08:00
elif oldval . choices != value . choices :
# If the choices have changed, use the new value, but attempt
# to keep the old options. If they are not valid keep the new
# defaults but warn.
2020-12-05 09:01:45 +08:00
self . options [ key ] = value
2020-09-15 02:36:38 +08:00
try :
value . set_value ( oldval . value )
except MesonException as e :
2021-03-05 06:16:11 +08:00
mlog . warning ( f ' Old value(s) of { key } are no longer valid, resetting to default ( { value . value } ). ' )
2018-05-13 22:36:58 +08:00
2020-04-10 05:09:05 +08:00
def is_cross_build ( self , when_building_for : MachineChoice = MachineChoice . HOST ) - > bool :
if when_building_for == MachineChoice . BUILD :
return False
2019-07-18 03:54:58 +08:00
return len ( self . cross_files ) > 0
2020-12-05 08:09:10 +08:00
def copy_build_options_from_regular_ones ( self ) - > None :
2020-12-03 08:02:03 +08:00
assert not self . is_cross_build ( )
2020-12-05 08:09:10 +08:00
for k in BUILTIN_OPTIONS_PER_MACHINE :
2020-12-05 09:01:45 +08:00
o = self . options [ k ]
self . options [ k . as_build ( ) ] . set_value ( o . value )
for bk , bv in self . options . items ( ) :
2020-12-03 08:02:03 +08:00
if bk . machine is MachineChoice . BUILD :
hk = bk . as_host ( )
try :
2020-12-05 09:01:45 +08:00
hv = self . options [ hk ]
2020-12-03 08:02:03 +08:00
bv . set_value ( hv . value )
except KeyError :
continue
2019-07-18 03:54:58 +08:00
2020-12-01 04:10:40 +08:00
def set_options ( self , options : T . Dict [ OptionKey , T . Any ] , subproject : str = ' ' , warn_unknown : bool = True ) - > None :
2019-07-18 03:54:58 +08:00
if not self . is_cross_build ( ) :
2020-12-01 04:10:40 +08:00
options = { k : v for k , v in options . items ( ) if k . machine is not MachineChoice . BUILD }
2018-05-13 22:36:58 +08:00
# Set prefix first because it's needed to sanitize other options
2020-12-01 04:10:40 +08:00
pfk = OptionKey ( ' prefix ' )
if pfk in options :
prefix = self . sanitize_prefix ( options [ pfk ] )
2020-12-05 09:01:45 +08:00
self . options [ OptionKey ( ' prefix ' ) ] . set_value ( prefix )
2020-12-05 08:09:10 +08:00
for key in BULITIN_DIR_NOPREFIX_OPTIONS :
2018-05-13 22:36:58 +08:00
if key not in options :
2020-12-05 09:01:45 +08:00
self . options [ key ] . set_value ( BUILTIN_OPTIONS [ key ] . prefixed_default ( key , prefix ) )
2018-05-13 22:36:58 +08:00
2020-12-01 04:10:40 +08:00
unknown_options : T . List [ OptionKey ] = [ ]
2018-05-13 22:36:58 +08:00
for k , v in options . items ( ) :
2020-12-01 04:10:40 +08:00
if k == pfk :
2019-04-15 13:23:10 +08:00
continue
2020-12-05 09:01:45 +08:00
elif k not in self . options :
2019-04-15 13:23:10 +08:00
unknown_options . append ( k )
2020-12-05 09:01:45 +08:00
else :
self . set_option ( k , v )
2018-12-12 13:19:03 +08:00
if unknown_options and warn_unknown :
2020-12-01 04:10:40 +08:00
unknown_options_str = ' , ' . join ( sorted ( str ( s ) for s in unknown_options ) )
2021-03-05 06:16:11 +08:00
sub = f ' In subproject { subproject } : ' if subproject else ' '
mlog . warning ( f ' { sub } Unknown options: " { unknown_options_str } " ' )
2020-01-17 09:45:10 +08:00
mlog . log ( ' The value of new options can be set with: ' )
mlog . log ( mlog . bold ( ' meson setup <builddir> --reconfigure -Dnew_option=new_value ... ' ) )
2019-07-18 03:54:58 +08:00
if not self . is_cross_build ( ) :
self . copy_build_options_from_regular_ones ( )
2018-05-13 22:36:58 +08:00
2020-12-01 04:10:40 +08:00
def set_default_options ( self , default_options : T . MutableMapping [ OptionKey , str ] , subproject : str , env : ' Environment ' ) - > None :
# Preserve order: if env.options has 'buildtype' it must come after
2020-08-03 22:05:38 +08:00
# 'optimization' if it is in default_options.
2020-12-05 09:01:45 +08:00
options : T . MutableMapping [ OptionKey , T . Any ]
2020-12-01 04:10:40 +08:00
if not subproject :
2020-12-05 09:01:45 +08:00
options = OrderedDict ( default_options )
2020-12-01 04:10:40 +08:00
options . update ( env . options )
env . options = options
# Create a subset of options, keeping only project and builtin
2020-08-03 22:05:38 +08:00
# options for this subproject.
# Language and backend specific options will be set later when adding
# languages and setting the backend (builtin options must be set first
# to know which backend we'll use).
2020-12-05 09:01:45 +08:00
options = OrderedDict ( )
2020-02-07 04:18:10 +08:00
2020-12-01 04:10:40 +08:00
for k , v in chain ( default_options . items ( ) , env . options . items ( ) ) :
2020-12-05 09:01:45 +08:00
# If this is a subproject, don't use other subproject options
2020-12-01 04:10:40 +08:00
if k . subproject and k . subproject != subproject :
2020-08-03 22:05:38 +08:00
continue
2020-12-05 09:01:45 +08:00
# If the option is a builtin and is yielding then it's not allowed per subproject.
2021-04-06 04:05:45 +08:00
#
# Always test this using the HOST machine, as many builtin options
# are not valid for the BUILD machine, but the yielding value does
# not differ between them even when they are valid for both.
if subproject and k . is_builtin ( ) and self . options [ k . evolve ( subproject = ' ' , machine = MachineChoice . HOST ) ] . yielding :
2020-12-05 09:01:45 +08:00
continue
2020-08-03 22:05:38 +08:00
# Skip base, compiler, and backend options, they are handled when
# adding languages and setting backend.
2020-12-05 08:09:10 +08:00
if k . type in { OptionType . COMPILER , OptionType . BACKEND , OptionType . BASE } :
2020-08-03 22:05:38 +08:00
continue
options [ k ] = v
2018-12-30 05:53:59 +08:00
2019-07-18 01:51:34 +08:00
self . set_options ( options , subproject = subproject )
2018-12-30 05:53:59 +08:00
2020-12-03 08:02:03 +08:00
def add_compiler_options ( self , options : ' KeyedOptionDictType ' , lang : str , for_machine : MachineChoice ,
2020-12-01 04:10:40 +08:00
env : ' Environment ' ) - > None :
2020-08-03 22:05:38 +08:00
for k , o in options . items ( ) :
2020-12-03 08:02:03 +08:00
value = env . options . get ( k )
2020-08-03 22:05:38 +08:00
if value is not None :
o . set_value ( value )
2020-12-05 09:01:45 +08:00
self . options . setdefault ( k , o )
2020-08-03 22:05:38 +08:00
2020-01-06 22:27:38 +08:00
def add_lang_args ( self , lang : str , comp : T . Type [ ' Compiler ' ] ,
2019-11-26 06:20:58 +08:00
for_machine : MachineChoice , env : ' Environment ' ) - > None :
2019-11-26 04:34:08 +08:00
""" Add global language arguments that are needed before compiler/linker detection. """
from . compilers import compilers
2021-03-24 11:52:49 +08:00
# These options are all new at this point, because the compiler is
# responsible for adding its own options, thus calling
# `self.options.update()`` is perfectly safe.
self . options . update ( compilers . get_global_options ( lang , comp , for_machine , env ) )
2019-11-26 04:34:08 +08:00
2020-06-20 08:01:10 +08:00
def process_new_compiler ( self , lang : str , comp : ' Compiler ' , env : ' Environment ' ) - > None :
2019-01-17 05:42:54 +08:00
from . import compilers
2018-12-12 13:19:03 +08:00
2018-10-05 08:52:08 +08:00
self . compilers [ comp . for_machine ] [ lang ] = comp
2020-08-03 22:05:38 +08:00
self . add_compiler_options ( comp . get_options ( ) , lang , comp . for_machine , env )
2018-12-12 13:19:03 +08:00
2020-12-05 08:09:10 +08:00
enabled_opts : T . List [ OptionKey ] = [ ]
for key in comp . base_options :
2020-12-05 09:01:45 +08:00
if key in self . options :
2019-01-17 05:42:54 +08:00
continue
2020-12-05 08:09:10 +08:00
oobj = compilers . base_options [ key ]
2020-12-01 04:10:40 +08:00
if key in env . options :
oobj . set_value ( env . options [ key ] )
2020-12-05 08:09:10 +08:00
enabled_opts . append ( key )
2020-12-05 09:01:45 +08:00
self . options [ key ] = oobj
2019-01-17 05:42:54 +08:00
self . emit_base_options_warnings ( enabled_opts )
2020-12-05 08:09:10 +08:00
def emit_base_options_warnings ( self , enabled_opts : T . List [ OptionKey ] ) - > None :
if OptionKey ( ' b_bitcode ' ) in enabled_opts :
2020-07-01 09:22:56 +08:00
mlog . warning ( ' Base option \' b_bitcode \' is enabled, which is incompatible with many linker options. Incompatible options such as \' b_asneeded \' have been disabled. ' , fatal = False )
mlog . warning ( ' Please see https://mesonbuild.com/Builtin-options.html#Notes_about_Apple_Bitcode_support for more details. ' , fatal = False )
2019-01-17 05:42:54 +08:00
2018-11-10 02:32:46 +08:00
class CmdLineFileParser ( configparser . ConfigParser ) :
2020-09-15 01:07:15 +08:00
def __init__ ( self ) - > None :
2018-11-10 02:32:46 +08:00
# We don't want ':' as key delimiter, otherwise it would break when
# storing subproject options like "subproject:option=value"
2019-11-12 19:52:42 +08:00
super ( ) . __init__ ( delimiters = [ ' = ' ] , interpolation = None )
2018-11-10 02:32:46 +08:00
2020-09-15 01:07:15 +08:00
def optionxform ( self , option : str ) - > str :
# Don't call str.lower() on keys
return option
2020-06-12 04:04:50 +08:00
class MachineFileParser ( ) :
2020-09-15 01:07:15 +08:00
def __init__ ( self , filenames : T . List [ str ] ) - > None :
2020-06-12 04:04:50 +08:00
self . parser = CmdLineFileParser ( )
self . constants = { ' True ' : True , ' False ' : False }
self . sections = { }
self . parser . read ( filenames )
# Parse [constants] first so they can be used in other sections
if self . parser . has_section ( ' constants ' ) :
self . constants . update ( self . _parse_section ( ' constants ' ) )
for s in self . parser . sections ( ) :
if s == ' constants ' :
continue
self . sections [ s ] = self . _parse_section ( s )
def _parse_section ( self , s ) :
self . scope = self . constants . copy ( )
section = { }
for entry , value in self . parser . items ( s ) :
if ' ' in entry or ' \t ' in entry or " ' " in entry or ' " ' in entry :
2021-03-05 06:16:11 +08:00
raise EnvironmentException ( f ' Malformed variable name { entry !r} in machine file. ' )
2020-06-12 04:04:50 +08:00
# Windows paths...
value = value . replace ( ' \\ ' , ' \\ \\ ' )
try :
ast = mparser . Parser ( value , ' machinefile ' ) . parse ( )
res = self . _evaluate_statement ( ast . lines [ 0 ] )
except MesonException :
2021-03-05 06:16:11 +08:00
raise EnvironmentException ( f ' Malformed value in machine file variable { entry !r} . ' )
2020-06-12 04:04:50 +08:00
except KeyError as e :
raise EnvironmentException ( ' Undefined constant {!r} in machine file variable {!r} . ' . format ( e . args [ 0 ] , entry ) )
section [ entry ] = res
self . scope [ entry ] = res
return section
def _evaluate_statement ( self , node ) :
if isinstance ( node , ( mparser . StringNode ) ) :
return node . value
elif isinstance ( node , mparser . BooleanNode ) :
return node . value
elif isinstance ( node , mparser . NumberNode ) :
return node . value
elif isinstance ( node , mparser . ArrayNode ) :
return [ self . _evaluate_statement ( arg ) for arg in node . args . arguments ]
elif isinstance ( node , mparser . IdNode ) :
return self . scope [ node . value ]
elif isinstance ( node , mparser . ArithmeticNode ) :
l = self . _evaluate_statement ( node . left )
r = self . _evaluate_statement ( node . right )
if node . operation == ' add ' :
if ( isinstance ( l , str ) and isinstance ( r , str ) ) or \
( isinstance ( l , list ) and isinstance ( r , list ) ) :
return l + r
elif node . operation == ' div ' :
if isinstance ( l , str ) and isinstance ( r , str ) :
return os . path . join ( l , r )
raise EnvironmentException ( ' Unsupported node type ' )
def parse_machine_files ( filenames ) :
parser = MachineFileParser ( filenames )
return parser . sections
2020-09-01 20:28:08 +08:00
def get_cmd_line_file ( build_dir : str ) - > str :
2018-10-26 00:19:23 +08:00
return os . path . join ( build_dir , ' meson-private ' , ' cmd_line.txt ' )
2020-09-01 20:28:08 +08:00
def read_cmd_line_file ( build_dir : str , options : argparse . Namespace ) - > None :
2018-10-26 00:19:23 +08:00
filename = get_cmd_line_file ( build_dir )
2019-09-26 00:40:55 +08:00
if not os . path . isfile ( filename ) :
return
2018-11-10 02:32:46 +08:00
config = CmdLineFileParser ( )
2018-10-26 00:19:23 +08:00
config . read ( filename )
# Do a copy because config is not really a dict. options.cmd_line_options
# overrides values from the file.
2020-12-01 04:10:40 +08:00
d = { OptionKey . from_string ( k ) : v for k , v in config [ ' options ' ] . items ( ) }
2018-10-26 00:19:23 +08:00
d . update ( options . cmd_line_options )
options . cmd_line_options = d
properties = config [ ' properties ' ]
2019-03-19 01:27:57 +08:00
if not options . cross_file :
options . cross_file = ast . literal_eval ( properties . get ( ' cross_file ' , ' [] ' ) )
2019-01-17 02:45:40 +08:00
if not options . native_file :
# This will be a string in the form: "['first', 'second', ...]", use
# literal_eval to get it into the list of strings.
options . native_file = ast . literal_eval ( properties . get ( ' native_file ' , ' [] ' ) )
2018-10-26 00:19:23 +08:00
2020-09-01 20:28:08 +08:00
def write_cmd_line_file ( build_dir : str , options : argparse . Namespace ) - > None :
2018-10-26 00:19:23 +08:00
filename = get_cmd_line_file ( build_dir )
2018-11-10 02:32:46 +08:00
config = CmdLineFileParser ( )
2018-10-26 00:19:23 +08:00
2020-03-07 02:47:06 +08:00
properties = OrderedDict ( )
2019-03-19 01:27:57 +08:00
if options . cross_file :
2021-03-20 22:38:01 +08:00
properties [ ' cross_file ' ] = options . cross_file
2019-01-17 02:45:40 +08:00
if options . native_file :
2021-03-20 22:38:01 +08:00
properties [ ' native_file ' ] = options . native_file
2018-10-26 00:19:23 +08:00
2020-12-01 04:10:40 +08:00
config [ ' options ' ] = { str ( k ) : str ( v ) for k , v in options . cmd_line_options . items ( ) }
2018-10-26 00:19:23 +08:00
config [ ' properties ' ] = properties
with open ( filename , ' w ' ) as f :
config . write ( f )
2020-09-01 20:28:08 +08:00
def update_cmd_line_file ( build_dir : str , options : argparse . Namespace ) :
2018-10-26 00:19:23 +08:00
filename = get_cmd_line_file ( build_dir )
2018-11-10 02:32:46 +08:00
config = CmdLineFileParser ( )
2018-10-26 00:19:23 +08:00
config . read ( filename )
2020-12-01 04:10:40 +08:00
config [ ' options ' ] . update ( { str ( k ) : str ( v ) for k , v in options . cmd_line_options . items ( ) } )
2018-10-26 00:19:23 +08:00
with open ( filename , ' w ' ) as f :
config . write ( f )
2020-09-01 20:28:08 +08:00
def get_cmd_line_options ( build_dir : str , options : argparse . Namespace ) - > str :
2019-09-26 00:40:55 +08:00
copy = argparse . Namespace ( * * vars ( options ) )
read_cmd_line_file ( build_dir , copy )
2020-12-01 04:10:40 +08:00
cmdline = [ ' -D {} = {} ' . format ( str ( k ) , v ) for k , v in copy . cmd_line_options . items ( ) ]
2019-09-26 00:40:55 +08:00
if options . cross_file :
2021-03-05 06:16:11 +08:00
cmdline + = [ f ' --cross-file { f } ' for f in options . cross_file ]
2019-09-26 00:40:55 +08:00
if options . native_file :
2021-03-05 06:16:11 +08:00
cmdline + = [ f ' --native-file { f } ' for f in options . native_file ]
2019-09-26 00:40:55 +08:00
return ' ' . join ( [ shlex . quote ( x ) for x in cmdline ] )
2020-09-08 21:35:50 +08:00
def major_versions_differ ( v1 : str , v2 : str ) - > bool :
2019-01-23 01:11:50 +08:00
return v1 . split ( ' . ' ) [ 0 : 2 ] != v2 . split ( ' . ' ) [ 0 : 2 ]
2020-09-01 20:28:08 +08:00
def load ( build_dir : str ) - > CoreData :
2018-03-01 06:25:12 +08:00
filename = os . path . join ( build_dir , ' meson-private ' , ' coredata.dat ' )
2021-03-05 06:16:11 +08:00
load_fail_msg = f ' Coredata file { filename !r} is corrupted. Try with a fresh build tree. '
2016-10-13 05:09:17 +08:00
try :
with open ( filename , ' rb ' ) as f :
obj = pickle . load ( f )
2019-01-17 05:44:06 +08:00
except ( pickle . UnpicklingError , EOFError ) :
2016-10-13 05:09:17 +08:00
raise MesonException ( load_fail_msg )
2021-03-16 20:21:33 +08:00
except ( ModuleNotFoundError , AttributeError ) :
2019-01-17 02:42:15 +08:00
raise MesonException (
" Coredata file {!r} references functions or classes that don ' t "
" exist. This probably means that it was generated with an old "
" version of meson. " . format ( filename ) )
2013-02-25 04:44:01 +08:00
if not isinstance ( obj , CoreData ) :
2016-10-13 05:09:17 +08:00
raise MesonException ( load_fail_msg )
2019-01-23 01:11:50 +08:00
if major_versions_differ ( obj . version , version ) :
2020-08-03 17:14:52 +08:00
raise MesonVersionMismatchException ( obj . version , version )
2013-02-25 04:44:01 +08:00
return obj
2020-09-01 20:28:08 +08:00
def save ( obj : CoreData , build_dir : str ) - > str :
2018-03-01 06:25:12 +08:00
filename = os . path . join ( build_dir , ' meson-private ' , ' coredata.dat ' )
2018-05-16 04:27:42 +08:00
prev_filename = filename + ' .prev '
tempfilename = filename + ' ~ '
2019-01-23 01:11:50 +08:00
if major_versions_differ ( obj . version , version ) :
2016-10-13 05:09:17 +08:00
raise MesonException ( ' Fatal version mismatch corruption. ' )
2018-05-16 04:27:42 +08:00
if os . path . exists ( filename ) :
import shutil
shutil . copyfile ( filename , prev_filename )
with open ( tempfilename , ' wb ' ) as f :
2016-08-25 07:29:11 +08:00
pickle . dump ( obj , f )
2018-05-16 04:27:42 +08:00
f . flush ( )
os . fsync ( f . fileno ( ) )
os . replace ( tempfilename , filename )
return filename
2013-03-10 05:53:02 +08:00
2018-03-16 05:52:56 +08:00
2020-09-01 20:28:08 +08:00
def register_builtin_arguments ( parser : argparse . ArgumentParser ) - > None :
2020-08-04 00:00:09 +08:00
for n , b in BUILTIN_OPTIONS . items ( ) :
2020-12-05 08:09:10 +08:00
b . add_to_argparse ( str ( n ) , parser , ' ' )
2020-08-04 00:00:09 +08:00
for n , b in BUILTIN_OPTIONS_PER_MACHINE . items ( ) :
2020-12-05 08:09:10 +08:00
b . add_to_argparse ( str ( n ) , parser , ' (just for host machine) ' )
b . add_to_argparse ( str ( n . as_build ( ) ) , parser , ' (just for build machine) ' )
2018-04-27 09:49:00 +08:00
parser . add_argument ( ' -D ' , action = ' append ' , dest = ' projectoptions ' , default = [ ] , metavar = " option " ,
help = ' Set the value of an option, can be used several times to set multiple options. ' )
2018-03-16 05:52:56 +08:00
2020-12-01 04:10:40 +08:00
def create_options_dict ( options : T . List [ str ] , subproject : str = ' ' ) - > T . Dict [ OptionKey , str ] :
result : T . OrderedDict [ OptionKey , str ] = OrderedDict ( )
2018-05-13 22:36:58 +08:00
for o in options :
try :
( key , value ) = o . split ( ' = ' , 1 )
except ValueError :
2021-03-05 06:16:11 +08:00
raise MesonException ( f ' Option { o !r} must have a value separated by equals sign. ' )
2020-12-01 04:10:40 +08:00
k = OptionKey . from_string ( key )
if subproject :
k = k . evolve ( subproject = subproject )
result [ k ] = value
2018-05-13 22:36:58 +08:00
return result
2020-09-01 20:28:08 +08:00
def parse_cmd_line_options ( args : argparse . Namespace ) - > None :
2018-05-13 22:36:58 +08:00
args . cmd_line_options = create_options_dict ( args . projectoptions )
2018-05-13 22:36:58 +08:00
# Merge builtin options set with --option into the dict.
2020-12-05 08:09:10 +08:00
for key in chain (
2020-08-04 00:00:09 +08:00
BUILTIN_OPTIONS . keys ( ) ,
2020-12-05 08:09:10 +08:00
( k . as_build ( ) for k in BUILTIN_OPTIONS_PER_MACHINE . keys ( ) ) ,
2020-08-04 00:00:09 +08:00
BUILTIN_OPTIONS_PER_MACHINE . keys ( ) ,
2019-04-15 13:23:10 +08:00
) :
2020-12-05 08:09:10 +08:00
name = str ( key )
2019-04-15 13:23:10 +08:00
value = getattr ( args , name , None )
if value is not None :
2020-12-01 04:10:40 +08:00
if key in args . cmd_line_options :
2019-04-15 13:23:10 +08:00
cmdline_name = BuiltinOption . argparse_name_to_arg ( name )
raise MesonException (
' Got argument {0} as both -D {0} and {1} . Pick one. ' . format ( name , cmdline_name ) )
2020-12-01 04:10:40 +08:00
args . cmd_line_options [ key ] = value
2019-04-15 13:23:10 +08:00
delattr ( args , name )
2018-04-27 10:18:46 +08:00
2019-04-05 04:32:55 +08:00
2020-01-06 22:27:38 +08:00
_U = T . TypeVar ( ' _U ' , bound = UserOption [ _T ] )
2019-04-05 04:32:55 +08:00
2020-01-06 22:27:38 +08:00
class BuiltinOption ( T . Generic [ _T , _U ] ) :
2019-04-05 04:32:55 +08:00
""" Class for a builtin option type.
2019-12-22 02:40:39 +08:00
There are some cases that are not fully supported yet .
2019-04-05 04:32:55 +08:00
"""
2019-07-19 22:34:11 +08:00
def __init__ ( self , opt_type : T . Type [ _U ] , description : str , default : T . Any , yielding : bool = True , * ,
2020-01-06 22:27:38 +08:00
choices : T . Any = None ) :
2019-04-05 04:32:55 +08:00
self . opt_type = opt_type
self . description = description
self . default = default
self . choices = choices
self . yielding = yielding
2020-12-05 08:09:10 +08:00
def init_option ( self , name : ' OptionKey ' , value : T . Optional [ T . Any ] , prefix : str ) - > _U :
2019-04-05 04:32:55 +08:00
""" Create an instance of opt_type and return it. """
2019-07-19 22:34:11 +08:00
if value is None :
value = self . prefixed_default ( name , prefix )
keywords = { ' yielding ' : self . yielding , ' value ' : value }
2019-04-05 04:32:55 +08:00
if self . choices :
keywords [ ' choices ' ] = self . choices
2019-05-13 00:38:11 +08:00
return self . opt_type ( self . description , * * keywords )
2019-04-05 04:32:55 +08:00
2020-01-06 22:27:38 +08:00
def _argparse_action ( self ) - > T . Optional [ str ] :
2020-03-07 02:48:40 +08:00
# If the type is a boolean, the presence of the argument in --foo form
# is to enable it. Disabling happens by using -Dfoo=false, which is
# parsed under `args.projectoptions` and does not hit this codepath.
if isinstance ( self . default , bool ) :
2019-04-05 04:51:26 +08:00
return ' store_true '
return None
2020-01-06 22:27:38 +08:00
def _argparse_choices ( self ) - > T . Any :
2019-04-05 04:55:17 +08:00
if self . opt_type is UserBooleanOption :
return [ True , False ]
elif self . opt_type is UserFeatureOption :
return UserFeatureOption . static_choices
return self . choices
2019-04-05 05:25:09 +08:00
@staticmethod
def argparse_name_to_arg ( name : str ) - > str :
if name == ' warning_level ' :
return ' --warnlevel '
else :
return ' -- ' + name . replace ( ' _ ' , ' - ' )
2020-12-05 08:09:10 +08:00
def prefixed_default ( self , name : ' OptionKey ' , prefix : str = ' ' ) - > T . Any :
2019-04-05 05:13:57 +08:00
if self . opt_type in [ UserComboOption , UserIntegerOption ] :
return self . default
try :
2020-12-05 08:09:10 +08:00
return BULITIN_DIR_NOPREFIX_OPTIONS [ name ] [ prefix ]
2019-04-05 05:13:57 +08:00
except KeyError :
pass
return self . default
2020-12-05 08:09:10 +08:00
def add_to_argparse ( self , name : str , parser : argparse . ArgumentParser , help_suffix : str ) - > None :
2020-03-07 02:47:06 +08:00
kwargs = OrderedDict ( )
2019-04-05 05:17:52 +08:00
c = self . _argparse_choices ( )
b = self . _argparse_action ( )
h = self . description
if not b :
h = ' {} (default: {} ). ' . format ( h . rstrip ( ' . ' ) , self . prefixed_default ( name ) )
else :
kwargs [ ' action ' ] = b
if c and not b :
kwargs [ ' choices ' ] = c
kwargs [ ' default ' ] = argparse . SUPPRESS
2020-12-05 08:09:10 +08:00
kwargs [ ' dest ' ] = name
2019-04-05 05:17:52 +08:00
2020-12-05 08:09:10 +08:00
cmdline_name = self . argparse_name_to_arg ( name )
2019-04-15 13:23:10 +08:00
parser . add_argument ( cmdline_name , help = h + help_suffix , * * kwargs )
2019-04-05 05:17:52 +08:00
2020-06-11 01:28:21 +08:00
2019-04-20 19:17:13 +08:00
# Update `docs/markdown/Builtin-options.md` after changing the options below
2020-12-05 08:09:10 +08:00
# Also update mesonlib._BUILTIN_NAMES. See the comment there for why this is required.
BUILTIN_DIR_OPTIONS : ' KeyedOptionDictType ' = OrderedDict ( [
( OptionKey ( ' prefix ' ) , BuiltinOption ( UserStringOption , ' Installation prefix ' , default_prefix ( ) ) ) ,
( OptionKey ( ' bindir ' ) , BuiltinOption ( UserStringOption , ' Executable directory ' , ' bin ' ) ) ,
( OptionKey ( ' datadir ' ) , BuiltinOption ( UserStringOption , ' Data file directory ' , ' share ' ) ) ,
( OptionKey ( ' includedir ' ) , BuiltinOption ( UserStringOption , ' Header file directory ' , ' include ' ) ) ,
( OptionKey ( ' infodir ' ) , BuiltinOption ( UserStringOption , ' Info page directory ' , ' share/info ' ) ) ,
( OptionKey ( ' libdir ' ) , BuiltinOption ( UserStringOption , ' Library directory ' , default_libdir ( ) ) ) ,
( OptionKey ( ' libexecdir ' ) , BuiltinOption ( UserStringOption , ' Library executable directory ' , default_libexecdir ( ) ) ) ,
( OptionKey ( ' localedir ' ) , BuiltinOption ( UserStringOption , ' Locale data directory ' , ' share/locale ' ) ) ,
( OptionKey ( ' localstatedir ' ) , BuiltinOption ( UserStringOption , ' Localstate data directory ' , ' var ' ) ) ,
( OptionKey ( ' mandir ' ) , BuiltinOption ( UserStringOption , ' Manual page directory ' , ' share/man ' ) ) ,
( OptionKey ( ' sbindir ' ) , BuiltinOption ( UserStringOption , ' System executable directory ' , ' sbin ' ) ) ,
( OptionKey ( ' sharedstatedir ' ) , BuiltinOption ( UserStringOption , ' Architecture-independent data directory ' , ' com ' ) ) ,
( OptionKey ( ' sysconfdir ' ) , BuiltinOption ( UserStringOption , ' Sysconf data directory ' , ' etc ' ) ) ,
] )
BUILTIN_CORE_OPTIONS : ' KeyedOptionDictType ' = OrderedDict ( [
( OptionKey ( ' auto_features ' ) , BuiltinOption ( UserFeatureOption , " Override value of all ' auto ' features " , ' auto ' ) ) ,
( OptionKey ( ' backend ' ) , BuiltinOption ( UserComboOption , ' Backend to use ' , ' ninja ' , choices = backendlist ) ) ,
( OptionKey ( ' buildtype ' ) , BuiltinOption ( UserComboOption , ' Build type to use ' , ' debug ' ,
choices = [ ' plain ' , ' debug ' , ' debugoptimized ' , ' release ' , ' minsize ' , ' custom ' ] ) ) ,
( OptionKey ( ' debug ' ) , BuiltinOption ( UserBooleanOption , ' Debug ' , True ) ) ,
( OptionKey ( ' default_library ' ) , BuiltinOption ( UserComboOption , ' Default library type ' , ' shared ' , choices = [ ' shared ' , ' static ' , ' both ' ] ,
yielding = False ) ) ,
( OptionKey ( ' errorlogs ' ) , BuiltinOption ( UserBooleanOption , " Whether to print the logs from failing tests " , True ) ) ,
( OptionKey ( ' install_umask ' ) , BuiltinOption ( UserUmaskOption , ' Default umask to apply on permissions of installed files ' , ' 022 ' ) ) ,
( OptionKey ( ' layout ' ) , BuiltinOption ( UserComboOption , ' Build directory layout ' , ' mirror ' , choices = [ ' mirror ' , ' flat ' ] ) ) ,
( OptionKey ( ' optimization ' ) , BuiltinOption ( UserComboOption , ' Optimization level ' , ' 0 ' , choices = [ ' 0 ' , ' g ' , ' 1 ' , ' 2 ' , ' 3 ' , ' s ' ] ) ) ,
( OptionKey ( ' stdsplit ' ) , BuiltinOption ( UserBooleanOption , ' Split stdout and stderr in test logs ' , True ) ) ,
( OptionKey ( ' strip ' ) , BuiltinOption ( UserBooleanOption , ' Strip targets on install ' , False ) ) ,
( OptionKey ( ' unity ' ) , BuiltinOption ( UserComboOption , ' Unity build ' , ' off ' , choices = [ ' on ' , ' off ' , ' subprojects ' ] ) ) ,
( OptionKey ( ' unity_size ' ) , BuiltinOption ( UserIntegerOption , ' Unity block size ' , ( 2 , None , 4 ) ) ) ,
( OptionKey ( ' warning_level ' ) , BuiltinOption ( UserComboOption , ' Compiler warning level to use ' , ' 1 ' , choices = [ ' 0 ' , ' 1 ' , ' 2 ' , ' 3 ' ] , yielding = False ) ) ,
( OptionKey ( ' werror ' ) , BuiltinOption ( UserBooleanOption , ' Treat warnings as errors ' , False , yielding = False ) ) ,
2020-12-16 00:21:40 +08:00
( OptionKey ( ' wrap_mode ' ) , BuiltinOption ( UserComboOption , ' Wrap mode ' , ' default ' , choices = [ ' default ' , ' nofallback ' , ' nodownload ' , ' forcefallback ' , ' nopromote ' ] ) ) ,
2020-12-05 08:09:10 +08:00
( OptionKey ( ' force_fallback_for ' ) , BuiltinOption ( UserArrayOption , ' Force fallback for those subprojects ' , [ ] ) ) ,
] )
2020-06-11 01:28:21 +08:00
2020-08-04 00:00:09 +08:00
BUILTIN_OPTIONS = OrderedDict ( chain ( BUILTIN_DIR_OPTIONS . items ( ) , BUILTIN_CORE_OPTIONS . items ( ) ) )
2016-02-29 04:20:07 +08:00
2020-12-05 08:09:10 +08:00
BUILTIN_OPTIONS_PER_MACHINE : ' KeyedOptionDictType ' = OrderedDict ( [
( OptionKey ( ' pkg_config_path ' ) , BuiltinOption ( UserArrayOption , ' List of additional paths for pkg-config to search ' , [ ] ) ) ,
( OptionKey ( ' cmake_prefix_path ' ) , BuiltinOption ( UserArrayOption , ' List of additional prefixes for cmake to search ' , [ ] ) ) ,
2019-04-15 13:23:10 +08:00
] )
2017-10-20 23:54:10 +08:00
# Special prefix-dependent defaults for installation directories that reside in
# a path outside of the prefix in FHS and common usage.
2020-12-05 08:09:10 +08:00
BULITIN_DIR_NOPREFIX_OPTIONS : T . Dict [ OptionKey , T . Dict [ str , str ] ] = {
OptionKey ( ' sysconfdir ' ) : { ' /usr ' : ' /etc ' } ,
OptionKey ( ' localstatedir ' ) : { ' /usr ' : ' /var ' , ' /usr/local ' : ' /var/local ' } ,
OptionKey ( ' sharedstatedir ' ) : { ' /usr ' : ' /var/lib ' , ' /usr/local ' : ' /var/local/lib ' } ,
2017-10-20 23:54:10 +08:00
}
2017-01-16 18:38:00 +08:00
2020-08-04 00:00:09 +08:00
FORBIDDEN_TARGET_NAMES = { ' clean ' : None ,
2016-12-20 04:40:54 +08:00
' clean-ctlist ' : None ,
2013-03-25 03:28:59 +08:00
' clean-gcno ' : None ,
' clean-gcda ' : None ,
2017-05-11 00:31:12 +08:00
' coverage ' : None ,
2013-03-10 05:53:02 +08:00
' coverage-text ' : None ,
' coverage-xml ' : None ,
' coverage-html ' : None ,
' phony ' : None ,
2014-11-24 07:33:26 +08:00
' PHONY ' : None ,
2013-03-10 05:53:02 +08:00
' all ' : None ,
' test ' : None ,
2015-11-26 05:29:06 +08:00
' benchmark ' : None ,
2013-03-10 05:53:02 +08:00
' install ' : None ,
2016-12-29 05:16:19 +08:00
' uninstall ' : None ,
2013-03-23 04:37:34 +08:00
' build.ninja ' : None ,
2016-05-23 00:24:59 +08:00
' scan-build ' : None ,
2016-11-03 05:14:54 +08:00
' reconfigure ' : None ,
2017-04-25 01:21:33 +08:00
' dist ' : None ,
' distcheck ' : None ,
2017-01-01 03:25:09 +08:00
}
2020-06-11 01:28:21 +08:00