diff options
author | Victor Stinner <vstinner@python.org> | 2022-08-05 11:26:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 11:26:58 (GMT) |
commit | 398ed84dc40abc58e16f5014d44c08f20cb4b5f6 (patch) | |
tree | bdf8ba8c2fb1aed2a018134bd5991b76a0ac4eb1 /Misc/NEWS.d/next/Build | |
parent | 3a9e1fda7ab30e04545d3eceea1f2ccd37fa1f15 (diff) | |
download | cpython-398ed84dc40abc58e16f5014d44c08f20cb4b5f6.zip cpython-398ed84dc40abc58e16f5014d44c08f20cb4b5f6.tar.gz cpython-398ed84dc40abc58e16f5014d44c08f20cb4b5f6.tar.bz2 |
gh-93744: Remove configure --with-cxx-main option (#95651)
Remove the "configure --with-cxx-main" build option: it didn't work
for many years. Remove the MAINCC variable from configure and
Makefile.
The MAINCC variable was added by the issue gh-42471: commit
0f48d98b740110a672b62d467af192ec160e56ba. Previously, --with-cxx-main
was named --with-cxx.
Keep CXX and LDCXXSHARED variables, even if they are no longer used
by Python build system.
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-rw-r--r-- | Misc/NEWS.d/next/Build/2022-08-04-15-29-35.gh-issue-93744.svRuqm.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2022-08-04-15-29-35.gh-issue-93744.svRuqm.rst b/Misc/NEWS.d/next/Build/2022-08-04-15-29-35.gh-issue-93744.svRuqm.rst new file mode 100644 index 0000000..fa9ade2 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2022-08-04-15-29-35.gh-issue-93744.svRuqm.rst @@ -0,0 +1,3 @@ +Remove the ``configure --with-cxx-main`` build option: it didn't work for +many years. Remove the ``MAINCC`` variable from ``configure`` and +``Makefile``. Patch by Victor Stinner. |