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 Marco Sulla
Recipients Marco Sulla, vstinner, xtreak
Date 2020-03-01.14:34:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583073287.74.0.972614541149.issue39697@roundup.psfhosted.org>
In-reply-to
Content
The problem is here:

Programs/_testembed.o: $(srcdir)/Programs/_testembed.c
	$(MAINCC) -c $(PY_CORE_CFLAGS) -o $@ $(srcdir)/Programs/_testembed.c

`MAINCC` in my Makefile is `g++-9`. Probably, MAINCC is set to the value of ``--with-cxx-main`, if specified.

I replaced `MAINCC` with `CC` at this line, and it works.
History
Date User Action Args
2020-03-01 14:34:47Marco Sullasetrecipients: + Marco Sulla, vstinner, xtreak
2020-03-01 14:34:47Marco Sullasetmessageid: <1583073287.74.0.972614541149.issue39697@roundup.psfhosted.org>
2020-03-01 14:34:47Marco Sullalinkissue39697 messages
2020-03-01 14:34:47Marco Sullacreate