python/coverage: update to 7.6.5
[oi-userland.git] / components / python / setuptools / patches / 01-unixccompiler.patch
blob220303515f872da28cb64aaf0a509582cc1fa972
1 --- setuptools-75.4.0/setuptools/_distutils/unixccompiler.py.orig
2 +++ setuptools-75.4.0/setuptools/_distutils/unixccompiler.py
3 @@ -116,14 +116,14 @@
4 # Python extensions).
5 executables = {
6 'preprocessor': None,
7 - 'compiler': ["cc"],
8 - 'compiler_so': ["cc"],
9 - 'compiler_cxx': ["c++"],
10 - 'compiler_so_cxx': ["c++"],
11 - 'linker_so': ["cc", "-shared"],
12 - 'linker_so_cxx': ["c++", "-shared"],
13 - 'linker_exe': ["cc"],
14 - 'linker_exe_cxx': ["c++", "-shared"],
15 + 'compiler': ["gcc"],
16 + 'compiler_so': ["gcc"],
17 + 'compiler_cxx': ["g++"],
18 + 'compiler_so_cxx': ["g++"],
19 + 'linker_so': ["gcc", "-shared"],
20 + 'linker_so_cxx': ["g++", "-shared"],
21 + 'linker_exe': ["gcc"],
22 + 'linker_exe_cxx': ["g++", "-shared"],
23 'archiver': ["ar", "-cr"],
24 'ranlib': None,