diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-05-02 20:35:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-02 20:35:58 (GMT) |
commit | 9ed34a89532763cf89f5e11fffb91ef7dee29fed (patch) | |
tree | 2bc0a03fe4ecf29c28d65b9025dff5434dcacef1 /configure | |
parent | 5facdbb29169c2799c42f887cef4cd9d087b0167 (diff) | |
download | cpython-9ed34a89532763cf89f5e11fffb91ef7dee29fed.zip cpython-9ed34a89532763cf89f5e11fffb91ef7dee29fed.tar.gz cpython-9ed34a89532763cf89f5e11fffb91ef7dee29fed.tar.bz2 |
bpo-30232: Regenerate configure (#1396)
Run autoconf.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2710,7 +2710,7 @@ fi -if test -e $srcdir/.git/HEAD +if test -e $srcdir/.git then # Extract the first word of "git", so it can be a program name with args. set dummy git; ac_word=$2 @@ -6801,6 +6801,7 @@ esac # tweak OPT based on compiler and platform, only if the user didn't set # it on the command line + if test "${OPT-unset}" = "unset" then case $GCC in @@ -6830,6 +6831,8 @@ then then # Clang also needs -fwrapv WRAP="-fwrapv" + # bpo-30104: disable strict aliasing to compile correctly dtoa.c, + # see Makefile.pre.in for more information CFLAGS_ALIASING="-fno-strict-aliasing" fi |