summary refs log tree commit diff
path: root/pkgs/development/python-modules/numpy-distutils-C++.patch
blob: 4b2d5c640e6477033f9ce0c085ff1a9703a00a81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff --git a/numpy/distutils/unixccompiler.py b/numpy/distutils/unixccompiler.py
index a92ccd3..9630e91 100644
--- a/numpy/distutils/unixccompiler.py
+++ b/numpy/distutils/unixccompiler.py
@@ -43,10 +43,15 @@ def UnixCCompiler__compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts
         if opt not in llink_s:
             self.linker_so = llink_s.split() + opt.split()
 
-    display = '%s: %s' % (os.path.basename(self.compiler_so[0]), src)
     try:
-        self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
-                   extra_postargs, display = display)
+        if self.detect_language(src) == 'c++':
+            display = '%s: %s' % (os.path.basename(self.compiler_so_cxx[0]), src)
+            self.spawn(self.compiler_so_cxx + cc_args + [src, '-o', obj] +
+                       extra_postargs, display = display)
+        else:
+            display = '%s: %s' % (os.path.basename(self.compiler_so[0]), src)
+            self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
+                       extra_postargs, display = display)
     except DistutilsExecError:
         msg = str(get_exception())
         raise CompileError(msg)