sim/common/ChangeLog:
2005-02-28 Jim Blandy <jimb@redhat.com> * aclocal.m4 (SIM_AC_OPTION_WARNINGS): Don't include -Wuninitialized in the default list of build warnings if CFLAGS is set, and doesn't include -O. (Using -Wuninitialized without optimization produces a warning, which interferes with compilation with -Werror.) sim/ChangeLog: 2005-02-28 Jim Blandy <jimb@redhat.com> * d10v/configure.ac, igen/configure.ac, m68hc11/configure.ac, mips/configure.ac, mn10300/configure.ac, v850/configure.ac: Regenerated, after change to common/aclocal.m4.
This commit is contained in:
parent
ca07ff3495
commit
51216631bc
9 changed files with 98 additions and 7 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-02-28 Jim Blandy <jimb@redhat.com>
|
||||||
|
|
||||||
|
* d10v/configure.ac, igen/configure.ac, m68hc11/configure.ac,
|
||||||
|
mips/configure.ac, mn10300/configure.ac, v850/configure.ac:
|
||||||
|
Regenerated, after change to common/aclocal.m4.
|
||||||
|
|
||||||
2005-02-18 Corinna Vinschen <vinschen@redhat.com>
|
2005-02-18 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
* iq2000: New target subdirectory.
|
* iq2000: New target subdirectory.
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
2005-02-28 Jim Blandy <jimb@redhat.com>
|
||||||
|
|
||||||
|
* aclocal.m4 (SIM_AC_OPTION_WARNINGS): Don't include
|
||||||
|
-Wuninitialized in the default list of build warnings if CFLAGS is
|
||||||
|
set, and doesn't include -O. (Using -Wuninitialized without
|
||||||
|
optimization produces a warning, which interferes with compilation
|
||||||
|
with -Werror.)
|
||||||
|
|
||||||
2005-02-21 Jim Blandy <jimb@redhat.com>
|
2005-02-21 Jim Blandy <jimb@redhat.com>
|
||||||
|
|
||||||
* callback.c (os_fstat): Don't declare 't' unless it's used.
|
* callback.c (os_fstat): Don't declare 't' unless it's used.
|
||||||
|
|
13
sim/common/aclocal.m4
vendored
13
sim/common/aclocal.m4
vendored
|
@ -790,7 +790,18 @@ AC_DEFUN(SIM_AC_OPTION_WARNINGS,
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
13
sim/d10v/configure
vendored
13
sim/d10v/configure
vendored
|
@ -7033,7 +7033,18 @@ sim_link_links="${sim_link_links} targ-vals.def"
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
13
sim/igen/configure
vendored
13
sim/igen/configure
vendored
|
@ -2343,7 +2343,18 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
13
sim/m68hc11/configure
vendored
13
sim/m68hc11/configure
vendored
|
@ -7386,7 +7386,18 @@ fi;
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
13
sim/mips/configure
vendored
13
sim/mips/configure
vendored
|
@ -7396,7 +7396,18 @@ fi;
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
13
sim/mn10300/configure
vendored
13
sim/mn10300/configure
vendored
|
@ -7392,7 +7392,18 @@ fi;
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
13
sim/v850/configure
vendored
13
sim/v850/configure
vendored
|
@ -7390,7 +7390,18 @@ fi;
|
||||||
# NOTE: If you add to this list, remember to update
|
# NOTE: If you add to this list, remember to update
|
||||||
# gdb/doc/gdbint.texinfo.
|
# gdb/doc/gdbint.texinfo.
|
||||||
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
|
||||||
-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
|
-Wformat -Wparentheses -Wpointer-arith"
|
||||||
|
# GCC supports -Wuninitialized only with -O or -On, n != 0.
|
||||||
|
if test x${CFLAGS+set} = xset; then
|
||||||
|
case "${CFLAGS}" in
|
||||||
|
*"-O0"* ) ;;
|
||||||
|
*"-O"* )
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
build_warnings="${build_warnings} -Wuninitialized"
|
||||||
|
fi
|
||||||
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
|
||||||
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
|
||||||
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
|
||||||
|
|
Loading…
Reference in a new issue