--- gforth/configure.in 2003/05/15 18:43:15 1.121 +++ gforth/configure.in 2003/07/18 15:12:26 1.122 @@ -44,12 +44,18 @@ AC_ARG_ENABLE(force-reg, AC_DEFINE(FORCE_REG,,[Define if you want to use explicit register declarations for better performance or for more convenient CODE words (does not work with all GCC versions on all machines)])) AC_ARG_WITH(debug, -[ --with-debug specifies option -g to compile with debug info - --without-debug omits the -g switch and creates smaller images on - machines where "strip" has problems with gcc style - debugging informations.], +[ --with-debug specifies option -g to compile with debug info + --without-debug omits the -g switch and creates smaller images on + machines where "strip" has problems with gcc style + debugging informations.], if test "$withval" = "yes"; then DEBUGFLAG=-g; fi) +AC_ARG_WITH(dynamic, +[ --with-dynamic Gforth defaults to dynamic super instructions, + --without-dynamic this may cause problems with newer GCCs and global + CSE, so if you see troubles, turn it off.], +if test "$withval" = "no"; then no_dynamic_default=1; fi) + dnl PEEPHOLE="yes" dnl AC_ARG_WITH(peephole, dnl [ --with-peephole Enable peephole optimization (default)