diff options
Diffstat (limited to 'sim/m68hc11')
-rwxr-xr-x | sim/m68hc11/configure | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index 1a66de8..a779285 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -7386,7 +7386,18 @@ fi; # NOTE: If you add to this list, remember to update # gdb/doc/gdbint.texinfo. 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 # -Wunused-function -Wunused-label -Wunused-variable -Wunused-value # -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual |