diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-23 23:43:48 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-23 15:02:08 -0400 |
commit | 8d0978fb4bf62e760e7b50e59d5c58d30c059183 (patch) | |
tree | 42a8920fe3c63e09e4d3de2ee14b19ad355e63f6 /sim/rx | |
parent | a38fe4feddd68b9c0aa082dd078c668ca9f06aae (diff) | |
download | fsf-binutils-gdb-8d0978fb4bf62e760e7b50e59d5c58d30c059183.zip fsf-binutils-gdb-8d0978fb4bf62e760e7b50e59d5c58d30c059183.tar.gz fsf-binutils-gdb-8d0978fb4bf62e760e7b50e59d5c58d30c059183.tar.bz2 |
sim: use AS_HELP_STRING everywhere
This helps standardize the configure --help output.
Diffstat (limited to 'sim/rx')
-rw-r--r-- | sim/rx/ChangeLog | 6 | ||||
-rwxr-xr-x | sim/rx/configure | 23 | ||||
-rw-r--r-- | sim/rx/configure.ac | 6 |
3 files changed, 24 insertions, 11 deletions
diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index 507046f..b0be474 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,9 @@ +2015-06-23 Mike Frysinger <vapier@gentoo.org> + + * configure.ac (AC_ARG_ENABLE(cycle-accurate)): Call AS_HELP_STRING. + (AC_ARG_ENABLE(cycle-stats)): Likewise. + * configure: Regenerate. + 2015-06-12 Mike Frysinger <vapier@gentoo.org> * configure: Regenerate. diff --git a/sim/rx/configure b/sim/rx/configure index 4dcbbfd..e36b80d 100755 --- a/sim/rx/configure +++ b/sim/rx/configure @@ -1399,14 +1399,19 @@ Optional Features: --disable-libtool-lock avoid locking (might break parallel builds) --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer - --enable-sim-bswap Use Host specific BSWAP instruction. - --enable-sim-cflags=opts Extra CFLAGS for use in building simulator - --enable-sim-debug=opts Enable debugging flags - --enable-sim-stdio Specify whether to use stdio for console input/output. - --enable-sim-trace=opts Enable tracing flags - --enable-sim-profile=opts Enable profiling flags + --enable-sim-bswap Use Host specific BSWAP instruction + --enable-sim-cflags=opts + Extra CFLAGS for use in building simulator + --enable-sim-debug=opts Enable debugging flags (for developers of the sim + itself) + --enable-sim-stdio Specify whether to use stdio for console + input/output + --enable-sim-trace=opts Enable tracing of simulated programs + --enable-sim-profile=opts + Enable profiling flags --disable-cycle-accurate - --disable-cycle-stats + Disable cycle accurate simulation (faster runtime) + --disable-cycle-stats Disable cycle statistics (faster runtime) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] @@ -12292,7 +12297,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12295 "configure" +#line 12300 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12398,7 +12403,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12401 "configure" +#line 12406 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/rx/configure.ac b/sim/rx/configure.ac index 24e14e7..94b5a74 100644 --- a/sim/rx/configure.ac +++ b/sim/rx/configure.ac @@ -27,14 +27,16 @@ SIM_AC_COMMON AC_CHECK_HEADERS(getopt.h) AC_ARG_ENABLE(cycle-accurate, -[ --disable-cycle-accurate ], +[AS_HELP_STRING([--disable-cycle-accurate], + [Disable cycle accurate simulation (faster runtime)])], [case "${enableval}" in yes | no) ;; *) AC_MSG_ERROR(bad value ${enableval} given for --enable-cycle-accurate option) ;; esac]) AC_ARG_ENABLE(cycle-stats, -[ --disable-cycle-stats ], +[AS_HELP_STRING([--disable-cycle-stats], + [Disable cycle statistics (faster runtime)])], [case "${enableval}" in yes | no) ;; *) AC_MSG_ERROR(bad value ${enableval} given for --enable-cycle-stats option) ;; |