aboutsummaryrefslogtreecommitdiff
path: root/sim/rx/configure.ac
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-06-23 23:43:48 +0545
committerMike Frysinger <vapier@gentoo.org>2015-06-23 15:02:08 -0400
commit8d0978fb4bf62e760e7b50e59d5c58d30c059183 (patch)
tree42a8920fe3c63e09e4d3de2ee14b19ad355e63f6 /sim/rx/configure.ac
parenta38fe4feddd68b9c0aa082dd078c668ca9f06aae (diff)
downloadfsf-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/configure.ac')
-rw-r--r--sim/rx/configure.ac6
1 files changed, 4 insertions, 2 deletions
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) ;;