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 Dormouse759
Recipients Dormouse759
Date 2019-07-19.11:49:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563536952.58.0.764226132067.issue37631@roundup.psfhosted.org>
In-reply-to
Content
Problem:
If you want to override CFLAGS by setting EXTRA_CFLAGS, they may have no effect if there are contrary flags in the CFLAGS_NODIST variable.

How to reproduce:
make CFLAGS_NODIST="-O2" EXTRA_CFLAGS="-Og"

If you look at GCC arguments, there is -O2 present *after* the -Og flag. This means -Og gets ignored.
History
Date User Action Args
2019-07-19 11:49:12Dormouse759setrecipients: + Dormouse759
2019-07-19 11:49:12Dormouse759setmessageid: <1563536952.58.0.764226132067.issue37631@roundup.psfhosted.org>
2019-07-19 11:49:12Dormouse759linkissue37631 messages
2019-07-19 11:49:11Dormouse759create