1 --- setuptools-75.4.0/setuptools/_distutils/unixccompiler.py.orig
2 +++ setuptools-75.4.0/setuptools/_distutils/unixccompiler.py
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"],