From 6d5b7999de5066272fefc3f641273fa547ff9651 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 15 Oct 2013 17:06:35 +0000 Subject: [PATCH] [SCons] Use specified 'python_compiler' to link Python module Fixes Issue 179. --- interfaces/cython/SConscript | 1 + 1 file changed, 1 insertion(+) diff --git a/interfaces/cython/SConscript b/interfaces/cython/SConscript index 1903eb461..891cf6e0f 100644 --- a/interfaces/cython/SConscript +++ b/interfaces/cython/SConscript @@ -132,6 +132,7 @@ else: localenv['py_extra_link_args'] = repr(['-fprofile-arcs', '-ftest-coverage']) if env['python_compiler']: localenv['ENV']['CC'] = env['python_compiler'] + localenv['ENV']['CXX'] = env['python_compiler'] if 'LDFLAGS' not in localenv['ENV']: localenv['ENV']['LDFLAGS'] = ''