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 xdegaye
Recipients Alex.Willmer, doko, martin.panter, twouters, vstinner, xdegaye
Date 2016-07-28.11:37:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469705850.51.0.904652055052.issue26851@psf.upfronthosting.co.za>
In-reply-to
Content
> I am still curious what configures the preprocessor to set __ARM_ARCH to 7 (I guess the clang -target argument?)
Yes, the -target clang argument or the -march gcc argument.

> and why we can’t set LDFLAGS at the same time or place. Is it just more convenient this way?
I don't understand the question. LDFLAGS is set at the time we know that __ARM_ARCH is 7, just after the preprocessing is done. Would you set it elsewhere ?
LDFLAGS is set in configure.ac with always this same idiom: LDFLAGS="$LDFLAGS new_options..." and this setting is done in what seems to be random places in configure.ac.
CCSHARED is set in one case statement.
History
Date User Action Args
2016-07-28 11:37:30xdegayesetrecipients: + xdegaye, twouters, doko, vstinner, martin.panter, Alex.Willmer
2016-07-28 11:37:30xdegayesetmessageid: <1469705850.51.0.904652055052.issue26851@psf.upfronthosting.co.za>
2016-07-28 11:37:30xdegayelinkissue26851 messages
2016-07-28 11:37:30xdegayecreate