The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
4.6 KiB
110 lines
4.6 KiB
# Copyright 2012-2017 The Meson development team |
|
|
|
# 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. |
|
|
|
import typing as T |
|
|
|
from .. import coredata |
|
from ..mesonlib import MachineChoice, OptionKey |
|
|
|
from .mixins.clike import CLikeCompiler |
|
from .compilers import Compiler |
|
from .mixins.gnu import GnuCompiler |
|
from .mixins.clang import ClangCompiler |
|
|
|
if T.TYPE_CHECKING: |
|
from ..programs import ExternalProgram |
|
from ..envconfig import MachineInfo |
|
from ..environment import Environment |
|
from ..linkers import DynamicLinker |
|
|
|
class ObjCPPCompiler(CLikeCompiler, Compiler): |
|
|
|
language = 'objcpp' |
|
|
|
def __init__(self, exelist: T.List[str], version: str, for_machine: MachineChoice, |
|
is_cross: bool, info: 'MachineInfo', |
|
exe_wrap: T.Optional['ExternalProgram'], |
|
linker: T.Optional['DynamicLinker'] = None, |
|
full_version: T.Optional[str] = None): |
|
Compiler.__init__(self, exelist, version, for_machine, info, |
|
is_cross=is_cross, full_version=full_version, |
|
linker=linker) |
|
CLikeCompiler.__init__(self, exe_wrap) |
|
|
|
@staticmethod |
|
def get_display_language() -> str: |
|
return 'Objective-C++' |
|
|
|
def sanity_check(self, work_dir: str, environment: 'Environment') -> None: |
|
code = '#import<stdio.h>\nclass MyClass;int main(void) { return 0; }\n' |
|
return self._sanity_check_impl(work_dir, environment, 'sanitycheckobjcpp.mm', code) |
|
|
|
|
|
class GnuObjCPPCompiler(GnuCompiler, ObjCPPCompiler): |
|
def __init__(self, exelist: T.List[str], version: str, for_machine: MachineChoice, |
|
is_cross: bool, info: 'MachineInfo', |
|
exe_wrapper: T.Optional['ExternalProgram'] = None, |
|
defines: T.Optional[T.Dict[str, str]] = None, |
|
linker: T.Optional['DynamicLinker'] = None, |
|
full_version: T.Optional[str] = None): |
|
ObjCPPCompiler.__init__(self, exelist, version, for_machine, is_cross, |
|
info, exe_wrapper, linker=linker, full_version=full_version) |
|
GnuCompiler.__init__(self, defines) |
|
default_warn_args = ['-Wall', '-Winvalid-pch', '-Wnon-virtual-dtor'] |
|
self.warn_args = {'0': [], |
|
'1': default_warn_args, |
|
'2': default_warn_args + ['-Wextra'], |
|
'3': default_warn_args + ['-Wextra', '-Wpedantic']} |
|
|
|
|
|
class ClangObjCPPCompiler(ClangCompiler, ObjCPPCompiler): |
|
|
|
def __init__(self, exelist: T.List[str], version: str, for_machine: MachineChoice, |
|
is_cross: bool, info: 'MachineInfo', |
|
exe_wrapper: T.Optional['ExternalProgram'] = None, |
|
defines: T.Optional[T.Dict[str, str]] = None, |
|
linker: T.Optional['DynamicLinker'] = None, |
|
full_version: T.Optional[str] = None): |
|
ObjCPPCompiler.__init__(self, exelist, version, for_machine, is_cross, |
|
info, exe_wrapper, linker=linker, full_version=full_version) |
|
ClangCompiler.__init__(self, defines) |
|
default_warn_args = ['-Wall', '-Winvalid-pch', '-Wnon-virtual-dtor'] |
|
self.warn_args = {'0': [], |
|
'1': default_warn_args, |
|
'2': default_warn_args + ['-Wextra'], |
|
'3': default_warn_args + ['-Wextra', '-Wpedantic']} |
|
|
|
|
|
def get_options(self) -> 'coredata.KeyedOptionDictType': |
|
opts = super().get_options() |
|
opts.update({ |
|
OptionKey('std', machine=self.for_machine, lang='cpp'): coredata.UserComboOption( |
|
'C++ language standard to use', |
|
['none', 'c++98', 'c++11', 'c++14', 'c++17'], |
|
'none', |
|
) |
|
}) |
|
return opts |
|
|
|
def get_option_compile_args(self, options: 'coredata.KeyedOptionDictType') -> T.List[str]: |
|
args = [] |
|
std = options[OptionKey('std', machine=self.for_machine, lang='cpp')] |
|
if std.value != 'none': |
|
args.append('-std=' + std.value) |
|
return args |
|
|
|
|
|
class AppleClangObjCPPCompiler(ClangObjCPPCompiler): |
|
|
|
"""Handle the differences between Apple's clang and vanilla clang."""
|
|
|