From 3e4b0e800b04380e669d4cff7f8c77bdc031b170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Fri, 10 Aug 2001 08:56:17 +0000 Subject: [PATCH] Get OPT from the environment to build the CCSHARED command. Fixes the problem reported in bug #438786. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7a649c63d95..6de7aae76c0 100644 --- a/setup.py +++ b/setup.py @@ -138,8 +138,8 @@ class PyBuildExt(build_ext): # unfortunately, distutils doesn't let us provide separate C and C++ # compilers if compiler is not None: - (ccshared,) = sysconfig.get_config_vars('CCSHARED') - args['compiler_so'] = compiler + ' ' + ccshared + (ccshared,opt) = sysconfig.get_config_vars('CCSHARED','OPT') + args['compiler_so'] = compiler + ' ' + opt + ' ' + ccshared if linker_so is not None: args['linker_so'] = linker_so + ' -shared' self.compiler.set_executables(**args)