diff options
author | Baljak <baljci@hotmail.com> | 2020-02-05 00:10:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 00:10:16 (GMT) |
commit | 2545fa87628b4caca519da8aeb0eeef368b9dc0d (patch) | |
tree | 71ee21dc171463a15446ff6df103f97c15b739be /Doc | |
parent | cb1c0746f277052e45a60d6c436a765e34722821 (diff) | |
download | cpython-2545fa87628b4caca519da8aeb0eeef368b9dc0d.zip cpython-2545fa87628b4caca519da8aeb0eeef368b9dc0d.tar.gz cpython-2545fa87628b4caca519da8aeb0eeef368b9dc0d.tar.bz2 |
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.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index fabc1c5..cb4c518 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -2109,7 +2109,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 |