aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/configure
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1995-11-09 02:35:15 +0000
committerMichael Meissner <gnu@the-meissners.org>1995-11-09 02:35:15 +0000
commitc5addc193d90f24d60acb7e3c025f2bb6ba01be7 (patch)
treebbcec41eb08105ff1d1dd079a75e653b1fa49c1b /sim/ppc/configure
parent33698029dbb6a003bf4a79c177f4f43d9269212d (diff)
downloadgdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.zip
gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.tar.gz
gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.tar.bz2
General cleanup; add -t options support to print all options
Diffstat (limited to 'sim/ppc/configure')
-rwxr-xr-xsim/ppc/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/ppc/configure b/sim/ppc/configure
index 9c3b40d..28c40ec 100755
--- a/sim/ppc/configure
+++ b/sim/ppc/configure
@@ -14,7 +14,7 @@ ac_default_prefix=/usr/local
ac_help="$ac_help
--enable-sim-cflags=opts Extra CFLAGS for use in building simulator"
ac_help="$ac_help
- --enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings"
+ --enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o"
ac_help="$ac_help
--enable-sim-config=file Override default config file"
ac_help="$ac_help
@@ -465,7 +465,7 @@ fi
enableval="$enable_sim_warnings"
if test -n "$enableval"; then
case "${enableval}" in
- yes) sim_warnings="-Wall";;
+ yes) sim_warnings="-Wall -Wpointer-arith -Wbad-function-cast -Wmissing-prototypes -Wmissing-declarations";;
no) sim_warnings="-w";;
*) sim_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
esac