mirror of git://gcc.gnu.org/git/gcc.git
warnings.m4 (ACX_PROG_CC_WARNING_OPTS): Avoid leading dash in expr call.
config/: * warnings.m4 (ACX_PROG_CC_WARNING_OPTS): Avoid leading dash in expr call. fixincludes/: * configure: Regenerate. gcc/: * configure: Regenerate. libcpp/: * configure: Regenerate. libdecnumber/: * configure: Regenerate. libiberty/: * configure: Regenerate. lto-plugin/: * configure: Regenerate. From-SVN: r182546
This commit is contained in:
parent
36acc1a242
commit
4a5e00ca50
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* warnings.m4 (ACX_PROG_CC_WARNING_OPTS): Avoid leading dash in
|
||||||
|
expr call.
|
||||||
|
|
||||||
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
PR bootstrap/51388
|
PR bootstrap/51388
|
||||||
|
|
|
@ -32,7 +32,7 @@ for real_option in $1; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
AS_VAR_PUSHDEF([acx_Woption], [acx_cv_prog_cc_warning_$option])
|
AS_VAR_PUSHDEF([acx_Woption], [acx_cv_prog_cc_warning_$option])
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -4569,7 +4569,7 @@ for real_option in -W -Wall -Wwrite-strings -Wstrict-prototypes \
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-12-20 Bernd Schmidt <bernds@codesourcery.com>
|
2011-12-20 Bernd Schmidt <bernds@codesourcery.com>
|
||||||
|
|
||||||
PR middle-end/51200
|
PR middle-end/51200
|
||||||
|
|
|
@ -4849,7 +4849,7 @@ fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_cc_gcc_supports_ada" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_cc_gcc_supports_ada" >&5
|
||||||
$as_echo "$acx_cv_cc_gcc_supports_ada" >&6; }
|
$as_echo "$acx_cv_cc_gcc_supports_ada" >&6; }
|
||||||
|
|
||||||
if test x$GNATBIND != xno && test x$GNATMAKE != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
|
if test "x$GNATBIND" != xno && test "x$GNATMAKE" != xno && test x$acx_cv_cc_gcc_supports_ada != xno; then
|
||||||
have_gnat=yes
|
have_gnat=yes
|
||||||
else
|
else
|
||||||
have_gnat=no
|
have_gnat=no
|
||||||
|
@ -6404,7 +6404,7 @@ for real_option in -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
@ -6449,7 +6449,7 @@ for real_option in -Wstrict-prototypes -Wmissing-prototypes; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
@ -6494,7 +6494,7 @@ for real_option in -Wmissing-format-attribute; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
@ -6539,7 +6539,7 @@ for real_option in -Wold-style-definition -Wc++-compat; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
@ -6647,7 +6647,7 @@ for real_option in -fno-exceptions -fno-rtti; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -4693,7 +4693,7 @@ for real_option in -W -Wall -Wno-narrowing -Wwrite-strings \
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
@ -4739,7 +4739,7 @@ for real_option in -Wstrict-prototypes -Wmissing-prototypes \
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
@ -4824,7 +4824,7 @@ for real_option in -fno-exceptions -fno-rtti; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -3254,7 +3254,7 @@ for real_option in -W -Wall -Wwrite-strings -Wstrict-prototypes \
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-12-20 Tristan Gingold <gingold@adacore.com>
|
2011-12-20 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* aclocal.m4: Assume strncmp works in cross case.
|
* aclocal.m4: Assume strncmp works in cross case.
|
||||||
|
|
|
@ -3925,7 +3925,7 @@ for real_option in -W -Wall -Wwrite-strings -Wc++-compat \
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -4047,7 +4047,7 @@ for real_option in -Wall; do
|
||||||
# Do the check with the no- prefix removed since gcc silently
|
# Do the check with the no- prefix removed since gcc silently
|
||||||
# accepts any -Wno-* option on purpose
|
# accepts any -Wno-* option on purpose
|
||||||
case $real_option in
|
case $real_option in
|
||||||
-Wno-*) option=-W`expr $real_option : '-Wno-\(.*\)'` ;;
|
-Wno-*) option=-W`expr x$real_option : 'x-Wno-\(.*\)'` ;;
|
||||||
*) option=$real_option ;;
|
*) option=$real_option ;;
|
||||||
esac
|
esac
|
||||||
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
as_acx_Woption=`$as_echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh`
|
||||||
|
|
Loading…
Reference in New Issue