This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: patch: --disable-interpreter


>>>>> "Bryce" == Bryce McKinlay <bryce@albatross.co.nz> writes:

Bryce> It seems natural to me to provide a "--disable-interpreter"
Bryce> configure option now that the interpreter is enabled by default
Bryce> on some platforms. Is this patch ok?

configure will automatically recognize --disable-interpreter since we
already have an AC_ARG_ENABLE for it.  We just have to convince it to
do the right thing.

So this patch isn't the one.

The right thing to do is to add a case to the "if" inside the existing
AC_ARG_ENABLE.  Something like:

  elif test "$enable_interpreter" = no; then
    libgcj_interpreter=no
  fi

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]