vote up 1 vote down star

For example, I may use "python setup.py build --compiler=msvc" or "python setup.py build --compiler=mingw32"or just "python setup.py build", in which case the default compiler (say, "bcpp") will be used. How can I get the compiler name inside my setup.py (e. g. "msvc", "mingw32" and "bcpp", respectively)?

UPD.: I don't need the default compiler, I need the one that is actually going to be used, which is not necessarily the default one. So far I haven't found a better way than to parse sys.argv to see if there's a "--compiler..." string there.

flag

63% accept rate

3 Answers

vote up 0 vote down

See the default with: distutils.ccompiler.get_default_compiler

link|flag
When I call distutils.sysconfig.get_config_vars() it returns {'EXE': '.exe', 'exec_prefix': 'C:\\Python25', 'LIBDEST': 'C:\\Python25\\Lib', 'prefix': 'C:\\Python25', 'SO': '.pyd', 'BINLIBDEST': 'C:\\Python25\\Lib', 'INCLUDEPY': 'C:\\Python25\\include'} No 'CC' there... – Headcrab Apr 7 at 9:24
That's because it's going to use the default one. Use distutils.ccompiler.get_default_compiler() – vartec Apr 7 at 9:51
No, there's no 'CC' in the dictionary even if I specify (and it uses) a non-default compiler. – Headcrab Apr 7 at 10:18
I guess that's unix-only thing.. – vartec Apr 7 at 10:23
vote up 0 vote down

import distutils.ccompiler

compiler_name = distutils.ccompiler.get_default_compiler()

link|flag
vote up 1 vote down

You can subclass the distutils.command.build_ext.build_ext command.

Once build_ext.finalize_options() method has been called, the compiler type is stored in self.compiler as a string (the same as the one passed to the build_ext's --compiler option, e.g. 'mingw32', 'gcc', etc...).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.