Skip to content

Commit

Permalink
Python : Remove redundant configure flags
Browse files Browse the repository at this point in the history
`--with-system-ffi` has been on by default on non-macOS UNIX platforms since Python 3.6 and is being removed entirely in 3.12.

`--enable-unicode=ucs4` was changed to `--with-wide-unicode` in Python 3.0, and `--with-wide-unicode` was later removed in Python 3.3 with PEP 393 making Python support UCS-4/wide unicode by default.
  • Loading branch information
murraystevenson committed May 3, 2024
1 parent 296e5a6 commit ae1b86d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

"commands" : [

"./configure --prefix={buildDir} {libraryType} --enable-unicode=ucs4 --with-ensurepip=install --with-system-ffi",
"./configure --prefix={buildDir} {libraryType} --with-ensurepip=install",
"make -j {jobs}",
"make install",

Expand Down

0 comments on commit ae1b86d

Please sign in to comment.