2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

python: Re-add CFLAGS as clang (as of 10.0.0) supports it

This commit is contained in:
Dylan Araps 2020-03-28 13:49:47 +02:00
parent ee1161617b
commit 33ee7e748d
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

View File

@ -6,6 +6,11 @@ cat >> Modules/Setup <<EOF
_uuid nis ossaudiodev
EOF
# Reported 20-27% performance improvements.
# See: "PythonNoSemanticInterpositionSpeedup"
export CFLAGS="$CFLAGS -fno-semantic-interposition"
export LDFLAGS="$LDFLAGS -fno-semantic-interposition"
patch -p1 < python3-always-pip.patch
./configure \