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 vstinner
Recipients vstinner
Date 2018-12-14.18:47:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544813222.33.0.788709270274.issue35501@psf.upfronthosting.co.za>
In-reply-to
Content
"make coverage" modifies CFLAGS and LIBS, Makefile.pre.in:

coverage:
	@echo "Building with support for coverage checking:"
	$(MAKE) clean profile-removal
	$(MAKE) @DEF_MAKE_RULE@ CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"

CFLAGS_NODIST should be used instead here. I'm not sure about LIBS: do we need LIBS_NODIST, as we have CFLAGS_NODIST? LIBS_NODIST would be used for Python and C extensions of the stdlib, but not for third-party C extensions: not used by distutils.


See also bpo-35257: "Avoid leaking linker flags into distutils: add PY_LDFLAGS_NODIST".
History
Date User Action Args
2018-12-14 18:47:02vstinnersetrecipients: + vstinner
2018-12-14 18:47:02vstinnersetmessageid: <1544813222.33.0.788709270274.issue35501@psf.upfronthosting.co.za>
2018-12-14 18:47:02vstinnerlinkissue35501 messages
2018-12-14 18:47:02vstinnercreate