|
| 1 | +diff --git a/mesonbuild/build.py b/mesonbuild/build.py |
| 2 | +index cf71dc2..423b008 100644 |
| 3 | +--- a/mesonbuild/build.py |
| 4 | ++++ b/mesonbuild/build.py |
| 5 | +@@ -2169,7 +2169,10 @@ class StaticLibrary(BuildTarget): |
| 6 | + elif self.rust_crate_type == 'staticlib': |
| 7 | + self.suffix = 'a' |
| 8 | + else: |
| 9 | +- self.suffix = 'a' |
| 10 | ++ if self.environment.machines[self.for_machine].is_windows(): |
| 11 | ++ self.suffix = 'lib' |
| 12 | ++ else: |
| 13 | ++ self.suffix = 'a' |
| 14 | + self.filename = self.prefix + self.name + '.' + self.suffix |
| 15 | + self.outputs[0] = self.filename |
| 16 | + |
| 17 | +@@ -2233,6 +2236,8 @@ class SharedLibrary(BuildTarget): |
| 18 | + environment: environment.Environment, |
| 19 | + compilers: T.Dict[str, 'Compiler'], |
| 20 | + kwargs): |
| 21 | ++ raise NotImplementedError("SharedLibrary builds not allowed on Nuitka-Python!") |
| 22 | ++ |
| 23 | + self.soversion: T.Optional[str] = None |
| 24 | + self.ltversion: T.Optional[str] = None |
| 25 | + # Max length 2, first element is compatibility_version, second is current_version |
| 26 | +diff --git a/mesonbuild/cmake/toolchain.py b/mesonbuild/cmake/toolchain.py |
| 27 | +index 9eb961c..ffa9f89 100644 |
| 28 | +--- a/mesonbuild/cmake/toolchain.py |
| 29 | ++++ b/mesonbuild/cmake/toolchain.py |
| 30 | +@@ -174,6 +174,8 @@ class CMakeToolchain: |
| 31 | + |
| 32 | + # Set the compiler variables |
| 33 | + for lang, comp_obj in self.compilers.items(): |
| 34 | ++ if lang == 'cython': |
| 35 | ++ continue |
| 36 | + prefix = 'CMAKE_{}_'.format(language_map.get(lang, lang.upper())) |
| 37 | + |
| 38 | + exe_list = comp_obj.get_exelist() |
| 39 | +@@ -210,7 +212,7 @@ class CMakeToolchain: |
| 40 | + # Generate the CMakeLists.txt |
| 41 | + mlog.debug('CMake Toolchain: Calling CMake once to generate the compiler state') |
| 42 | + languages = list(self.compilers.keys()) |
| 43 | +- lang_ids = [language_map.get(x, x.upper()) for x in languages] |
| 44 | ++ lang_ids = [language_map.get(x, x.upper()) for x in languages if x != 'cython'] |
| 45 | + cmake_content = dedent(f''' |
| 46 | + cmake_minimum_required(VERSION 3.10) |
| 47 | + project(CompInfo {' '.join(lang_ids)}) |
| 48 | +diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py |
| 49 | +index 326e605..aa19f83 100644 |
| 50 | +--- a/mesonbuild/dependencies/python.py |
| 51 | ++++ b/mesonbuild/dependencies/python.py |
| 52 | +@@ -217,7 +217,7 @@ class _PythonDependencyBase(_Base): |
| 53 | + verdot = self.variables.get('py_version_short') |
| 54 | + imp_lower = self.variables.get('implementation_lower', 'python') |
| 55 | + if self.static: |
| 56 | +- libpath = Path('libs') / f'libpython{vernum}.a' |
| 57 | ++ libpath = Path('libs') / f'python{vernum}.lib' |
| 58 | + else: |
| 59 | + if limited_api: |
| 60 | + vernum = vernum[0] |
| 61 | +diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py |
| 62 | +index 1b7a056..198aa30 100644 |
| 63 | +--- a/mesonbuild/modules/python.py |
| 64 | ++++ b/mesonbuild/modules/python.py |
| 65 | +@@ -10,7 +10,7 @@ from . import ExtensionModule, ModuleInfo |
| 66 | + from .. import mesonlib |
| 67 | + from .. import mlog |
| 68 | + from ..options import UserFeatureOption |
| 69 | +-from ..build import known_shmod_kwargs, CustomTarget, CustomTargetIndex, BuildTarget, GeneratedList, StructuredSources, ExtractedObjects, SharedModule |
| 70 | ++from ..build import known_shmod_kwargs, CustomTarget, CustomTargetIndex, BuildTarget, GeneratedList, StructuredSources, ExtractedObjects, SharedModule, StaticLibrary |
| 71 | + from ..dependencies import NotFoundDependency |
| 72 | + from ..dependencies.detect import get_dep_identifier, find_external_dependency |
| 73 | + from ..dependencies.python import BasicPythonExternalProgram, python_factory, _PythonDependencyBase |
| 74 | +@@ -230,7 +230,7 @@ class PythonInstallation(_ExternalProgramHolder['PythonExternalProgram']): |
| 75 | + (self.is_pypy or mesonlib.version_compare(self.version, '>=3.9')): |
| 76 | + kwargs['gnu_symbol_visibility'] = 'inlineshidden' |
| 77 | + |
| 78 | +- return self.interpreter.build_target(self.current_node, args, kwargs, SharedModule) |
| 79 | ++ return self.interpreter.build_target(self.current_node, args, kwargs, StaticLibrary) |
| 80 | + |
| 81 | + def _convert_api_version_to_py_version_hex(self, api_version: str, detected_version: str) -> str: |
| 82 | + python_api_version_format = re.compile(r'[0-9]\.[0-9]{1,2}') |
| 83 | +diff --git a/mesonbuild/modules/python3.py b/mesonbuild/modules/python3.py |
| 84 | +index 2e6779a..20068d6 100644 |
| 85 | +--- a/mesonbuild/modules/python3.py |
| 86 | ++++ b/mesonbuild/modules/python3.py |
| 87 | +@@ -10,7 +10,7 @@ from .. import mesonlib |
| 88 | + from . import ExtensionModule, ModuleInfo |
| 89 | + from ..build import ( |
| 90 | + BuildTarget, CustomTarget, CustomTargetIndex, ExtractedObjects, |
| 91 | +- GeneratedList, SharedModule, StructuredSources, known_shmod_kwargs |
| 92 | ++ GeneratedList, SharedModule, StaticLibrary, StructuredSources, known_shmod_kwargs |
| 93 | + ) |
| 94 | + from ..interpreter.type_checking import SHARED_MOD_KWS |
| 95 | + from ..interpreterbase import typed_kwargs, typed_pos_args, noPosargs, noKwargs, permittedKwargs |
| 96 | +@@ -53,7 +53,7 @@ class Python3Module(ExtensionModule): |
| 97 | + suffix = [] |
| 98 | + kwargs['name_prefix'] = '' |
| 99 | + kwargs['name_suffix'] = suffix |
| 100 | +- return self.interpreter.build_target(state.current_node, args, kwargs, SharedModule) |
| 101 | ++ return self.interpreter.build_target(state.current_node, args, kwargs, StaticLibrary) |
| 102 | + |
| 103 | + @noPosargs |
| 104 | + @noKwargs |
0 commit comments