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 sourish.basu
Recipients christian.heimes, sourish.basu
Date 2021-10-22.22:49:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634942971.56.0.521223969493.issue45477@roundup.psfhosted.org>
In-reply-to
Content
By enabling and disabling optimization flags one by one, I figured out it was '-ipo' (inter-procedural optimization) that was the problem. Without that flag, 'configure' is successful. However, now I have a 'make' error:

./Programs/_testembed.c(1774): error: "__builtin_types_compatible_p" is only allowed in C
          config_set_argv(&config, Py_ARRAY_LENGTH(argv), argv);
                                   ^

compilation aborted for ./Programs/_testembed.c (code 2)
make[3]: *** [Programs/_testembed.o] Error 2
History
Date User Action Args
2021-10-22 22:49:31sourish.basusetrecipients: + sourish.basu, christian.heimes
2021-10-22 22:49:31sourish.basusetmessageid: <1634942971.56.0.521223969493.issue45477@roundup.psfhosted.org>
2021-10-22 22:49:31sourish.basulinkissue45477 messages
2021-10-22 22:49:31sourish.basucreate