1 #
   2 # Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 AC_DEFUN([BPERF_CHECK_CORES],
  27 [
  28   AC_MSG_CHECKING([for number of cores])
  29   NUM_CORES=1
  30   FOUND_CORES=no
  31 
  32   if test -f /proc/cpuinfo; then
  33     # Looks like a Linux (or cygwin) system
  34     NUM_CORES=`cat /proc/cpuinfo  | grep -c processor`
  35     FOUND_CORES=yes
  36   elif test -x /usr/sbin/psrinfo; then
  37     # Looks like a Solaris system
  38     NUM_CORES=`LC_MESSAGES=C /usr/sbin/psrinfo -v | grep -c on-line`
  39     FOUND_CORES=yes
  40   elif test -x /usr/sbin/sysctl; then
  41     # Looks like a MacOSX system
  42     NUM_CORES=`/usr/sbin/sysctl -n hw.ncpu`
  43     FOUND_CORES=yes
  44   elif test "x$OPENJDK_BUILD_OS" = xaix ; then
  45     NUM_CORES=`/usr/sbin/prtconf | grep "^Number Of Processors" | awk '{ print [$]4 }'`
  46     FOUND_CORES=yes
  47   elif test -n "$NUMBER_OF_PROCESSORS"; then
  48     # On windows, look in the env
  49     NUM_CORES=$NUMBER_OF_PROCESSORS
  50     FOUND_CORES=yes
  51   fi
  52 
  53   if test "x$FOUND_CORES" = xyes; then
  54     AC_MSG_RESULT([$NUM_CORES])
  55   else
  56     AC_MSG_RESULT([could not detect number of cores, defaulting to 1])
  57     AC_MSG_WARN([This will disable all parallelism from build!])
  58   fi
  59 ])
  60 
  61 AC_DEFUN([BPERF_CHECK_MEMORY_SIZE],
  62 [
  63   AC_MSG_CHECKING([for memory size])
  64   # Default to 1024 MB
  65   MEMORY_SIZE=1024
  66   FOUND_MEM=no
  67 
  68   if test -f /proc/meminfo; then
  69     # Looks like a Linux (or cygwin) system
  70     MEMORY_SIZE=`cat /proc/meminfo | grep MemTotal | awk '{print [$]2}'`
  71     MEMORY_SIZE=`expr $MEMORY_SIZE / 1024`
  72     FOUND_MEM=yes
  73   elif test -x /usr/sbin/prtconf; then
  74     # Looks like a Solaris or AIX system
  75     MEMORY_SIZE=`/usr/sbin/prtconf 2> /dev/null | grep "^Memory [[Ss]]ize" | awk '{ print [$]3 }'`
  76     FOUND_MEM=yes
  77   elif test -x /usr/sbin/sysctl; then
  78     # Looks like a MacOSX system
  79     MEMORY_SIZE=`/usr/sbin/sysctl -n hw.memsize`
  80     MEMORY_SIZE=`expr $MEMORY_SIZE / 1024 / 1024`
  81     FOUND_MEM=yes
  82   elif test "x$OPENJDK_BUILD_OS" = xwindows; then
  83     # Windows, but without cygwin
  84     MEMORY_SIZE=`wmic computersystem get totalphysicalmemory -value | grep = | cut -d "=" -f 2-`
  85     MEMORY_SIZE=`expr $MEMORY_SIZE / 1024 / 1024`
  86     FOUND_MEM=yes
  87   fi
  88 
  89   if test "x$FOUND_MEM" = xyes; then
  90     AC_MSG_RESULT([$MEMORY_SIZE MB])
  91   else
  92     AC_MSG_RESULT([could not detect memory size, defaulting to $MEMORY_SIZE MB])
  93     AC_MSG_WARN([This might seriously impact build performance!])
  94   fi
  95 ])
  96 
  97 AC_DEFUN_ONCE([BPERF_SETUP_BUILD_CORES],
  98 [
  99   # How many cores do we have on this build system?
 100   AC_ARG_WITH(num-cores, [AS_HELP_STRING([--with-num-cores],
 101       [number of cores in the build system, e.g. --with-num-cores=8 @<:@probed@:>@])])
 102   if test "x$with_num_cores" = x; then
 103     # The number of cores were not specified, try to probe them.
 104     BPERF_CHECK_CORES
 105   else
 106     NUM_CORES=$with_num_cores
 107   fi
 108   AC_SUBST(NUM_CORES)
 109 ])
 110 
 111 AC_DEFUN_ONCE([BPERF_SETUP_BUILD_MEMORY],
 112 [
 113   # How much memory do we have on this build system?
 114   AC_ARG_WITH(memory-size, [AS_HELP_STRING([--with-memory-size],
 115       [memory (in MB) available in the build system, e.g. --with-memory-size=1024 @<:@probed@:>@])])
 116   if test "x$with_memory_size" = x; then
 117     # The memory size was not specified, try to probe it.
 118     BPERF_CHECK_MEMORY_SIZE
 119   else
 120     MEMORY_SIZE=$with_memory_size
 121   fi
 122   AC_SUBST(MEMORY_SIZE)
 123 ])
 124 
 125 AC_DEFUN_ONCE([BPERF_SETUP_BUILD_JOBS],
 126 [
 127   # Provide a decent default number of parallel jobs for make depending on
 128   # number of cores, amount of memory and machine architecture.
 129   AC_ARG_WITH(jobs, [AS_HELP_STRING([--with-jobs],
 130       [number of parallel jobs to let make run @<:@calculated based on cores and memory@:>@])])
 131   if test "x$with_jobs" = x; then
 132     # Number of jobs was not specified, calculate.
 133     AC_MSG_CHECKING([for appropriate number of jobs to run in parallel])
 134     # Approximate memory in GB.
 135     memory_gb=`expr $MEMORY_SIZE / 1024`
 136     # Pick the lowest of memory in gb and number of cores.
 137     if test "$memory_gb" -lt "$NUM_CORES"; then
 138       JOBS="$memory_gb"
 139     else
 140       JOBS="$NUM_CORES"
 141     fi
 142     if test "$JOBS" -eq "0"; then
 143       JOBS=1
 144     fi
 145     AC_MSG_RESULT([$JOBS])
 146   else
 147     JOBS=$with_jobs
 148   fi
 149   AC_SUBST(JOBS)
 150 ])
 151 
 152 AC_DEFUN_ONCE([BPERF_SETUP_TEST_JOBS],
 153 [
 154   # The number of test jobs will be chosen automatically if TEST_JOBS is 0
 155   AC_ARG_WITH(test-jobs, [AS_HELP_STRING([--with-test-jobs],
 156       [number of parallel tests jobs to run @<:@based on build jobs@:>@])])
 157   if test "x$with_test_jobs" = x; then
 158       TEST_JOBS=0
 159   else
 160       TEST_JOBS=$with_test_jobs
 161   fi
 162   AC_SUBST(TEST_JOBS)
 163 ])
 164 
 165 AC_DEFUN([BPERF_SETUP_CCACHE],
 166 [
 167   AC_ARG_ENABLE([ccache],
 168       [AS_HELP_STRING([--enable-ccache],
 169       [enable using ccache to speed up recompilations @<:@disabled@:>@])])
 170 
 171   CCACHE_STATUS=
 172   AC_MSG_CHECKING([is ccache enabled])
 173   if test "x$enable_ccache" = xyes; then
 174     if test "x$TOOLCHAIN_TYPE" = "xgcc" -o "x$TOOLCHAIN_TYPE" = "xclang"; then
 175       AC_MSG_RESULT([yes])
 176       OLD_PATH="$PATH"
 177       if test "x$TOOLCHAIN_PATH" != x; then
 178         PATH=$TOOLCHAIN_PATH:$PATH
 179       fi
 180       BASIC_REQUIRE_PROGS(CCACHE, ccache)
 181       PATH="$OLD_PATH"
 182       CCACHE_VERSION=[`$CCACHE --version | head -n1 | $SED 's/[A-Za-z ]*//'`]
 183       CCACHE_STATUS="Active ($CCACHE_VERSION)"
 184     else
 185       AC_MSG_RESULT([no])
 186       AC_MSG_WARN([ccache is not supported with toolchain type $TOOLCHAIN_TYPE])
 187     fi
 188   elif test "x$enable_ccache" = xno; then
 189     AC_MSG_RESULT([no, explicitly disabled])
 190     CCACHE_STATUS="Disabled"
 191   elif test "x$enable_ccache" = x; then
 192     AC_MSG_RESULT([no])
 193   else
 194     AC_MSG_RESULT([unknown])
 195     AC_MSG_ERROR([--enable-ccache does not accept any parameters])
 196   fi
 197   AC_SUBST(CCACHE)
 198 
 199   AC_ARG_WITH([ccache-dir],
 200       [AS_HELP_STRING([--with-ccache-dir],
 201       [where to store ccache files @<:@~/.ccache@:>@])])
 202 
 203   if test "x$with_ccache_dir" != x; then
 204     # When using a non home ccache directory, assume the use is to share ccache files
 205     # with other users. Thus change the umask.
 206     SET_CCACHE_DIR="CCACHE_DIR=$with_ccache_dir CCACHE_UMASK=002"
 207     if test "x$CCACHE" = x; then
 208       AC_MSG_WARN([--with-ccache-dir has no meaning when ccache is not enabled])
 209     fi
 210   fi
 211 
 212   if test "x$CCACHE" != x; then
 213     BPERF_SETUP_CCACHE_USAGE
 214   fi
 215 ])
 216 
 217 AC_DEFUN([BPERF_SETUP_CCACHE_USAGE],
 218 [
 219   if test "x$CCACHE" != x; then
 220     if test "x$OPENJDK_BUILD_OS" = "xmacosx"; then
 221       HAS_BAD_CCACHE=[`$ECHO $CCACHE_VERSION | \
 222           $GREP -e '^1\.' -e '^2\.' -e '^3\.0\.' -e '^3\.1\.'`]
 223       if test "x$HAS_BAD_CCACHE" != "x"; then
 224         AC_MSG_ERROR([On macosx, ccache 3.2 or later is required, found $CCACHE_VERSION])
 225       fi
 226     fi
 227     if test "x$USE_PRECOMPILED_HEADER" = "xtrue"; then
 228       HAS_BAD_CCACHE=[`$ECHO $CCACHE_VERSION | \
 229           $GREP -e '^1.*' -e '^2.*' -e '^3\.0.*' -e '^3\.1\.[0123]$'`]
 230       if test "x$HAS_BAD_CCACHE" != "x"; then
 231         AC_MSG_ERROR([Precompiled headers requires ccache 3.1.4 or later, found $CCACHE_VERSION])
 232       fi
 233       AC_MSG_CHECKING([if C-compiler supports ccache precompiled headers])
 234       CCACHE_PRECOMP_FLAG="-fpch-preprocess"
 235       PUSHED_FLAGS="$CXXFLAGS"
 236       CXXFLAGS="$CCACHE_PRECOMP_FLAG $CXXFLAGS"
 237       AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], [CC_KNOWS_CCACHE_TRICK=yes], [CC_KNOWS_CCACHE_TRICK=no])
 238       CXXFLAGS="$PUSHED_FLAGS"
 239       if test "x$CC_KNOWS_CCACHE_TRICK" = xyes; then
 240         AC_MSG_RESULT([yes])
 241         CFLAGS_CCACHE="$CCACHE_PRECOMP_FLAG"
 242         AC_SUBST(CFLAGS_CCACHE)
 243         CCACHE_SLOPPINESS=pch_defines,time_macros
 244       else
 245         AC_MSG_RESULT([no])
 246         AC_MSG_ERROR([Cannot use ccache with precompiled headers without compiler support for $CCACHE_PRECOMP_FLAG])
 247       fi
 248     fi
 249 
 250     CCACHE="CCACHE_COMPRESS=1 $SET_CCACHE_DIR \
 251         CCACHE_SLOPPINESS=$CCACHE_SLOPPINESS CCACHE_BASEDIR=$TOPDIR $CCACHE"
 252 
 253     if test "x$SET_CCACHE_DIR" != x; then
 254       mkdir -p $CCACHE_DIR > /dev/null 2>&1
 255       chmod a+rwxs $CCACHE_DIR > /dev/null 2>&1
 256     fi
 257   fi
 258 ])
 259 
 260 ################################################################################
 261 #
 262 # Runs icecc-create-env once and prints the error if it fails
 263 #
 264 # $1: arguments to icecc-create-env
 265 # $2: log file
 266 #
 267 AC_DEFUN([BPERF_RUN_ICECC_CREATE_ENV],
 268 [
 269   ( cd ${CONFIGURESUPPORT_OUTPUTDIR}/icecc \
 270       && ${ICECC_CREATE_ENV} $1 > $2 2>&1 )
 271   if test "$?" != "0"; then
 272     AC_MSG_NOTICE([icecc-create-env output:])
 273     cat $2
 274     AC_MSG_ERROR([Failed to create icecc compiler environment])
 275   fi
 276 ])
 277 
 278 ################################################################################
 279 #
 280 # Optionally enable distributed compilation of native code using icecc/icecream
 281 #
 282 AC_DEFUN([BPERF_SETUP_ICECC],
 283 [
 284   AC_ARG_ENABLE([icecc], [AS_HELP_STRING([--enable-icecc],
 285       [enable distribted compilation of native code using icecc/icecream @<:@disabled@:>@])])
 286 
 287   if test "x${enable_icecc}" = "xyes"; then
 288     BASIC_REQUIRE_PROGS(ICECC_CMD, icecc)
 289     old_path="$PATH"
 290 
 291     # Look for icecc-create-env in some known places
 292     PATH="$PATH:/usr/lib/icecc:/usr/lib64/icecc"
 293     BASIC_REQUIRE_PROGS(ICECC_CREATE_ENV, icecc-create-env)
 294     # Use icecc-create-env to create a minimal compilation environment that can
 295     # be sent to the other hosts in the icecream cluster.
 296     icecc_create_env_log="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/icecc_create_env.log"
 297     ${MKDIR} -p ${CONFIGURESUPPORT_OUTPUTDIR}/icecc
 298     # Older versions of icecc does not have the --gcc parameter
 299     if ${ICECC_CREATE_ENV} | $GREP -q -e --gcc; then
 300       icecc_gcc_arg="--gcc"
 301     fi
 302     if test "x${TOOLCHAIN_TYPE}" = "xgcc"; then
 303       BPERF_RUN_ICECC_CREATE_ENV([${icecc_gcc_arg} ${CC} ${CXX}], \
 304           ${icecc_create_env_log})
 305     elif test "x$TOOLCHAIN_TYPE" = "xclang"; then
 306       # For clang, the icecc compilerwrapper is needed. It usually resides next
 307       # to icecc-create-env.
 308       BASIC_REQUIRE_PROGS(ICECC_WRAPPER, compilerwrapper)
 309       BPERF_RUN_ICECC_CREATE_ENV([--clang ${CC} ${ICECC_WRAPPER}], ${icecc_create_env_log})
 310     else
 311       AC_MSG_ERROR([Can only create icecc compiler packages for toolchain types gcc and clang])
 312     fi
 313     PATH="$old_path"
 314     # The bundle with the compiler gets a name based on checksums. Parse log file
 315     # to find it.
 316     ICECC_ENV_BUNDLE_BASENAME="`${SED} -n '/^creating/s/creating //p' ${icecc_create_env_log}`"
 317     ICECC_ENV_BUNDLE="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/${ICECC_ENV_BUNDLE_BASENAME}"
 318     if test ! -f ${ICECC_ENV_BUNDLE}; then
 319       AC_MSG_ERROR([icecc-create-env did not produce an environment ${ICECC_ENV_BUNDLE}])
 320     fi
 321     AC_MSG_CHECKING([for icecc build environment for target compiler])
 322     AC_MSG_RESULT([${ICECC_ENV_BUNDLE}])
 323     ICECC="ICECC_VERSION=${ICECC_ENV_BUNDLE} ICECC_CC=${CC} ICECC_CXX=${CXX} ${ICECC_CMD}"
 324 
 325     if test "x${COMPILE_TYPE}" = "xcross"; then
 326       # If cross compiling, create a separate env package for the build compiler
 327       # Assume "gcc" or "cc" is gcc and "clang" is clang. Otherwise bail.
 328       icecc_create_env_log_build="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/icecc_create_env_build.log"
 329       if test "x${BUILD_CC##*/}" = "xgcc" ||  test "x${BUILD_CC##*/}" = "xcc"; then
 330         BPERF_RUN_ICECC_CREATE_ENV([${icecc_gcc_arg} ${BUILD_CC} ${BUILD_CXX}], \
 331             ${icecc_create_env_log_build})
 332       elif test "x${BUILD_CC##*/}" = "xclang"; then
 333         BPERF_RUN_ICECC_CREATE_ENV([--clang ${BUILD_CC} ${ICECC_WRAPPER}], ${icecc_create_env_log_build})
 334       else
 335         AC_MSG_ERROR([Cannot create icecc compiler package for ${BUILD_CC}])
 336       fi
 337       ICECC_ENV_BUNDLE_BASENAME="`${SED} -n '/^creating/s/creating //p' ${icecc_create_env_log_build}`"
 338       ICECC_ENV_BUNDLE="${CONFIGURESUPPORT_OUTPUTDIR}/icecc/${ICECC_ENV_BUNDLE_BASENAME}"
 339       if test ! -f ${ICECC_ENV_BUNDLE}; then
 340         AC_MSG_ERROR([icecc-create-env did not produce an environment ${ICECC_ENV_BUNDLE}])
 341       fi
 342       AC_MSG_CHECKING([for icecc build environment for build compiler])
 343       AC_MSG_RESULT([${ICECC_ENV_BUNDLE}])
 344       BUILD_ICECC="ICECC_VERSION=${ICECC_ENV_BUNDLE} ICECC_CC=${BUILD_CC} \
 345           ICECC_CXX=${BUILD_CXX} ${ICECC_CMD}"
 346     else
 347       BUILD_ICECC="${ICECC}"
 348     fi
 349     AC_SUBST(ICECC)
 350     AC_SUBST(BUILD_ICECC)
 351   fi
 352 ])
 353 
 354 AC_DEFUN_ONCE([BPERF_SETUP_PRECOMPILED_HEADERS],
 355 [
 356 
 357   ###############################################################################
 358   #
 359   # Can the C/C++ compiler use precompiled headers?
 360   #
 361   AC_ARG_ENABLE([precompiled-headers], [AS_HELP_STRING([--disable-precompiled-headers],
 362       [disable using precompiled headers when compiling C++ @<:@enabled@:>@])],
 363       [ENABLE_PRECOMPH=${enable_precompiled_headers}], [ENABLE_PRECOMPH=yes])
 364 
 365   USE_PRECOMPILED_HEADER=true
 366   AC_MSG_CHECKING([If precompiled header is enabled])
 367   if test "x$ENABLE_PRECOMPH" = xno; then
 368     AC_MSG_RESULT([no, forced])
 369     USE_PRECOMPILED_HEADER=false
 370   elif test "x$ICECC" != "x"; then
 371     AC_MSG_RESULT([no, does not work effectively with icecc])
 372     USE_PRECOMPILED_HEADER=false
 373   elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then
 374     AC_MSG_RESULT([no, does not work with Solaris Studio])
 375     USE_PRECOMPILED_HEADER=false
 376   elif test "x$TOOLCHAIN_TYPE" = xxlc; then
 377     AC_MSG_RESULT([no, does not work with xlc])
 378     USE_PRECOMPILED_HEADER=false
 379   else
 380     AC_MSG_RESULT([yes])
 381   fi
 382 
 383   if test "x$ENABLE_PRECOMPH" = xyes; then
 384     # Check that the compiler actually supports precomp headers.
 385     if test "x$TOOLCHAIN_TYPE" = xgcc; then
 386       AC_MSG_CHECKING([that precompiled headers work])
 387       echo "int alfa();" > conftest.h
 388       $CXX -x c++-header conftest.h -o conftest.hpp.gch 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD
 389       if test ! -f conftest.hpp.gch; then
 390         USE_PRECOMPILED_HEADER=false
 391         AC_MSG_RESULT([no])
 392       else
 393         AC_MSG_RESULT([yes])
 394       fi
 395       $RM conftest.h conftest.hpp.gch
 396     fi
 397   fi
 398 
 399   AC_SUBST(USE_PRECOMPILED_HEADER)
 400 ])
 401 
 402 
 403 AC_DEFUN_ONCE([BPERF_SETUP_SMART_JAVAC],
 404 [
 405   AC_ARG_WITH(sjavac-server-java, [AS_HELP_STRING([--with-sjavac-server-java],
 406       [use this java binary for running the sjavac background server @<:@Boot JDK java@:>@])])
 407 
 408   if test "x$with_sjavac_server_java" != x; then
 409     SJAVAC_SERVER_JAVA="$with_sjavac_server_java"
 410     FOUND_VERSION=`$SJAVAC_SERVER_JAVA -version 2>&1 | grep " version \""`
 411     if test "x$FOUND_VERSION" = x; then
 412       AC_MSG_ERROR([Could not execute server java: $SJAVAC_SERVER_JAVA])
 413     fi
 414   else
 415     SJAVAC_SERVER_JAVA="$JAVA"
 416   fi
 417   AC_SUBST(SJAVAC_SERVER_JAVA)
 418 
 419   if test "$MEMORY_SIZE" -gt "3000"; then
 420     if "$JAVA" -version 2>&1 | $GREP -q "64-Bit"; then
 421       JVM_64BIT=true
 422     fi
 423   fi
 424 
 425   MX_VALUE=`expr $MEMORY_SIZE / 2`
 426   if test "$JVM_64BIT" = true; then
 427     # Set ms lower than mx since more than one instance of the server might
 428     # get launched at the same time before they figure out which instance won.
 429     MS_VALUE=512
 430     if test "$MX_VALUE" -gt "2048"; then
 431       MX_VALUE=2048
 432     fi
 433   else
 434     MS_VALUE=256
 435     if test "$MX_VALUE" -gt "1500"; then
 436       MX_VALUE=1500
 437     fi
 438   fi
 439   if test "$MX_VALUE" -lt "512"; then
 440     MX_VALUE=512
 441   fi
 442   ADD_JVM_ARG_IF_OK([-Xms${MS_VALUE}M -Xmx${MX_VALUE}M],SJAVAC_SERVER_JAVA_FLAGS,[$SJAVAC_SERVER_JAVA])
 443   AC_SUBST(SJAVAC_SERVER_JAVA_FLAGS)
 444 
 445   AC_ARG_ENABLE([sjavac], [AS_HELP_STRING([--enable-sjavac],
 446       [use sjavac to do fast incremental compiles @<:@disabled@:>@])],
 447       [ENABLE_SJAVAC="${enableval}"], [ENABLE_SJAVAC="no"])
 448   if test "x$JVM_ARG_OK" = "xfalse"; then
 449     AC_MSG_WARN([Could not set -Xms${MS_VALUE}M -Xmx${MX_VALUE}M, disabling sjavac])
 450     ENABLE_SJAVAC="no"
 451   fi
 452   AC_MSG_CHECKING([whether to use sjavac])
 453   AC_MSG_RESULT([$ENABLE_SJAVAC])
 454   AC_SUBST(ENABLE_SJAVAC)
 455 
 456   AC_ARG_ENABLE([javac-server], [AS_HELP_STRING([--disable-javac-server],
 457       [disable javac server @<:@enabled@:>@])],
 458       [ENABLE_JAVAC_SERVER="${enableval}"], [ENABLE_JAVAC_SERVER="yes"])
 459   if test "x$JVM_ARG_OK" = "xfalse"; then
 460     AC_MSG_WARN([Could not set -Xms${MS_VALUE}M -Xmx${MX_VALUE}M, disabling javac server])
 461     ENABLE_JAVAC_SERVER="no"
 462   fi
 463   AC_MSG_CHECKING([whether to use javac server])
 464   AC_MSG_RESULT([$ENABLE_JAVAC_SERVER])
 465   AC_SUBST(ENABLE_JAVAC_SERVER)
 466 
 467   if test "x$ENABLE_JAVAC_SERVER" = "xyes" || test "x$ENABLE_SJAVAC" = "xyes"; then
 468     # When using a server javac, the small client instances do not need much
 469     # resources.
 470     JAVA_FLAGS_JAVAC="$JAVA_FLAGS_SMALL"
 471   fi
 472 ])