diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2014-04-09 12:31:23 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2014-04-09 12:31:23 +0200 |
commit | 00051dd553979bd2a1dee100c324b59ee76a49e7 (patch) | |
tree | 5ceda01d9d82d861260c57b6cf3dc5f92263ae83 /Configure | |
parent | 869747506fd0081f6c7eed149ec6f7adbcc4d5b1 (diff) | |
download | perl-00051dd553979bd2a1dee100c324b59ee76a49e7.tar.gz |
-fwrapv is broken prior to gcc-4.3 (googled and patched by Zefram)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ # See Porting/pumpkin.pod for more information on metaconfig. # -# Generated on Wed Apr 9 10:58:09 CEST 2014 [metaconfig 3.5 PL0] +# Generated on Wed Apr 9 12:24:24 CEST 2014 [metaconfig 3.5 PL0] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -4652,7 +4652,7 @@ esac # disables -fwrapv, or if the user requests -fsanitize=undefined, # which turns the overflows -fwrapv ignores into runtime errors. case "$gccversion" in -4.9.*|4.1[0-9].*|[5-9].*) +4.[3-9].*|4.[1-9][0-9]*|[5-9].*|[1-9][0-9]*) case "$ccflags" in *-fno-wrapv*|*-fsanitize=undefined*|*-fwrapv*) ;; *) ccflags="$ccflags -fwrapv" ;; |