Matthias Urlichs wrote: > > Actually, there was a configure > > option to change the dynamic superinstruction generation default setting, > > but since it worked well with GCC 3.2, *and* we force GCSE off with > > -fno-gcse, we didn't worry about that. > > Can you reinstate that option / send me (a link to) the latest version where > it was still present?
You can still find it in the current configure.in, commented out: dnl gcc-3.2 seems to work fine now dnl AC_MSG_CHECKING(gcc version) dnl gcc_version=`$CC -v 2>&1|grep 'gcc version'|sed 's/.*gcc version //'` dnl AC_MSG_RESULT($gcc_version) dnl if expr "$gcc_version" \> 3.0.4 >/dev/null && expr "$gcc_version" \< 3.2.1 >/dev/null dnl then dnl no_dynamic_default=1 dnl AC_MSG_WARN(Disabling dynamic native code generation by default (speed penalty factor ~2)) dnl fi IIRC One of the reasons why I commented it out is that this way of getting the version number does not work so well on some platforms (Darwin IIRC). - anton --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
