summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-02-06 13:54:54 -0800
committerGitHub <noreply@github.com>2020-02-06 22:54:54 +0100
commit30096c9365fcb7cc3c38c4d161eaf8f61ae5cfea (patch)
treee20ae8c36b05fe52f5b18d0acfa70f822cbe9f3d
parent0d03a1028200646479ef9bb0ad8973d0e73f9525 (diff)
downloadcpython-git-30096c9365fcb7cc3c38c4d161eaf8f61ae5cfea.tar.gz
Fix MinGW library generation command (GH-17917)
To print the exports to stdout, the gendef command requires the option "-". Without this option, no output is generated. (cherry picked from commit 2545fa87628b4caca519da8aeb0eeef368b9dc0d) Co-authored-by: Baljak <baljci@hotmail.com>
-rw-r--r--Doc/whatsnew/3.8.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 007e3228f9..9b61e1f055 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -2111,7 +2111,7 @@ Changes in the C API
.. code-block:: shell
- gendef python38.dll > tmp.def
+ gendef - python38.dll > tmp.def
dlltool --dllname python38.dll --def tmp.def --output-lib libpython38.a
The location of an installed :file:`pythonXY.dll` will depend on the