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 | jayvee |
|---|---|
| Recipients | christian.heimes, dstanek, jayvee |
| Date | 2008年05月19日.07:48:34 |
| SpamBayes Score | 0.07838685 |
| Marked as misclassified | No |
| Message-id | <1211183323.52.0.116291095341.issue2445@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
The following will also let environment variables be passed to the
CygwinCCompiler.
--- orig/sysconfig.py 2008年05月19日 00:26:03.953125000 -0700
+++ copy/sysconfig.py 2008年05月19日 00:14:51.609375000 -0700
@@ -145,7 +145,7 @@
Mainly needed on Unix, so we can plug in the information that
varies across Unices and is stored in Python's Makefile.
"""
- if compiler.compiler_type == "unix":
+ if compiler.compiler_type in ("unix", "cygwin"):
(cc, cxx, opt, cflags, ccshared, ldshared, so_ext) = \
get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS',
'CCSHARED', 'LDSHARED', 'SO') |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008年05月19日 07:48:45 | jayvee | set | spambayes_score: 0.0783869 -> 0.07838685 recipients: + jayvee, dstanek, christian.heimes |
| 2008年05月19日 07:48:44 | jayvee | set | spambayes_score: 0.0783869 -> 0.0783869 messageid: <1211183323.52.0.116291095341.issue2445@psf.upfronthosting.co.za> |
| 2008年05月19日 07:48:41 | jayvee | link | issue2445 messages |
| 2008年05月19日 07:48:40 | jayvee | create | |