This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author perttikellomaki
Recipients perttikellomaki, tarek
Date 2009-09-08.13:05:37
SpamBayes Score 0.00040620373
Marked as misclassified No
Message-id <1252415139.67.0.192610915526.issue6863@psf.upfronthosting.co.za>
In-reply-to
Content
If the compiler command in CXX contains more than one word, e.g. "ccache
g++", line 256 in distutils/unixccompiler.py only picks the first word
as the linker and discards the rest:

                    linker[i] = self.compiler_cxx[i]

On Ubuntu 9.04 the values of the variables are:

(Pdb) print linker
['gcc', '-pthread', '-shared', '-Wl,-O1', '-Wl,-Bsymbolic-functions']
(Pdb) print self.compiler_cxx
['ccache', 'g++']
(Pdb)
History
Date User Action Args
2009-09-08 13:05:39perttikellomakisetrecipients: + perttikellomaki, tarek
2009-09-08 13:05:39perttikellomakisetmessageid: <1252415139.67.0.192610915526.issue6863@psf.upfronthosting.co.za>
2009-09-08 13:05:37perttikellomakilinkissue6863 messages
2009-09-08 13:05:37perttikellomakicreate