We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6258c3 commit f9b4423Copy full SHA for f9b4423
robotpy_build/command/build_ext.py
@@ -107,6 +107,11 @@ def build_extensions(self):
107
if cc_launcher:
108
self.compiler.compiler.insert(0, cc_launcher)
109
self.compiler.compiler_so.insert(0, cc_launcher)
110
+ try:
111
+ # setuptools v72.2.0 added C++ support
112
+ self.compiler.compiler_so_cxx.insert(0, cc_launcher)
113
+ except AttributeError:
114
+ pass
115
# compiler_cxx is only used for linking, so we don't mess with it
116
# .. distutils is so weird
117
# self.compiler.compiler_cxx.insert(0, cc_launcher)
0 commit comments