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 doko
Recipients Ray.Donnelly, doko, eric.araujo, trent
Date 2012-11-07.12:32:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352291527.48.0.697002877678.issue16235@psf.upfronthosting.co.za>
In-reply-to
Content
see issue #1161914 for the original script.

> 2) Since we are Pythoneers, why write this script as a
> shell-script instead of a Python script? (sh may not even be
> available on Windows).

python-config is usally not used by python module builds, but third party build systems. When cross-building these packages you usually are unable to run the python interpreter for the target.

Georg, Martin, do you have any opinion if we should replace the python code with shell code (if it works on all targets), or if it should be added as a separate script?

Ray, some issues:

 - is `local' available in all shells? just avoid it.

 - is there a need for the built vs. installed prefix?
   this is logic not found in the python implementation.
   what is this supposed to do?

 - LDLIBRARY and LDSHARED are expressed in terms of Makefile
   macros, leading to syntax errors.

 - --includes doesn't include the plat specific include dir

 - abi flags are missing from the include and lib dirs.

Please recheck, and compare the output of the python implementation with the one of the shell implementation.
History
Date User Action Args
2012-11-07 12:32:07dokosetrecipients: + doko, trent, eric.araujo, Ray.Donnelly
2012-11-07 12:32:07dokosetmessageid: <1352291527.48.0.697002877678.issue16235@psf.upfronthosting.co.za>
2012-11-07 12:32:07dokolinkissue16235 messages
2012-11-07 12:32:06dokocreate