< prev index next >

make/autoconf/help.m4

Print this page


   1 #
   2 # Copyright (c) 2011, 2017, 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


 196     else
 197       printf "The existing configuration has been successfully updated in\n%s\n" "$OUTPUTDIR"
 198     fi
 199   else
 200     if test "x$IS_RECONFIGURE" != "xyes"; then
 201       printf "A configuration has been successfully checked but not created\n"
 202     else
 203       printf "The existing configuration has been successfully checked in\n%s\n" "$OUTPUTDIR"
 204     fi
 205   fi
 206   if test "x$CONFIGURE_COMMAND_LINE" != x; then
 207     printf "using configure arguments '$CONFIGURE_COMMAND_LINE'.\n"
 208   else
 209     printf "using default settings.\n"
 210   fi
 211 
 212   printf "\n"
 213   printf "Configuration summary:\n"
 214   printf "* Debug level:    $DEBUG_LEVEL\n"
 215   printf "* HS debug level: $HOTSPOT_DEBUG_LEVEL\n"
 216   printf "* JDK variant:    $JDK_VARIANT\n"
 217   printf "* JVM variants:   $JVM_VARIANTS\n"









 218   printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n"
 219   printf "* Version string: $VERSION_STRING ($VERSION_SHORT)\n"
 220 
 221   printf "\n"
 222   printf "Tools summary:\n"
 223   if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
 224     printf "* Environment:    $WINDOWS_ENV_VENDOR version $WINDOWS_ENV_VERSION (root at $WINDOWS_ENV_ROOT_PATH)\n"
 225   fi
 226   printf "* Boot JDK:       $BOOT_JDK_VERSION (at $BOOT_JDK)\n"
 227   printf "* Toolchain:      $TOOLCHAIN_TYPE ($TOOLCHAIN_DESCRIPTION)\n"
 228   printf "* C Compiler:     Version $CC_VERSION_NUMBER (at $CC)\n"
 229   printf "* C++ Compiler:   Version $CXX_VERSION_NUMBER (at $CXX)\n"
 230 
 231   printf "\n"
 232   printf "Build performance summary:\n"
 233   printf "* Cores to use:   $JOBS\n"
 234   printf "* Memory limit:   $MEMORY_SIZE MB\n"
 235   if test "x$CCACHE_STATUS" != "x"; then
 236     printf "* ccache status:  $CCACHE_STATUS\n"
 237   fi


   1 #
   2 # Copyright (c) 2011, 2018, 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


 196     else
 197       printf "The existing configuration has been successfully updated in\n%s\n" "$OUTPUTDIR"
 198     fi
 199   else
 200     if test "x$IS_RECONFIGURE" != "xyes"; then
 201       printf "A configuration has been successfully checked but not created\n"
 202     else
 203       printf "The existing configuration has been successfully checked in\n%s\n" "$OUTPUTDIR"
 204     fi
 205   fi
 206   if test "x$CONFIGURE_COMMAND_LINE" != x; then
 207     printf "using configure arguments '$CONFIGURE_COMMAND_LINE'.\n"
 208   else
 209     printf "using default settings.\n"
 210   fi
 211 
 212   printf "\n"
 213   printf "Configuration summary:\n"
 214   printf "* Debug level:    $DEBUG_LEVEL\n"
 215   printf "* HS debug level: $HOTSPOT_DEBUG_LEVEL\n"

 216   printf "* JVM variants:   $JVM_VARIANTS\n"
 217   printf "* JVM features:   "
 218 
 219   for variant in $JVM_VARIANTS; do
 220     features_var_name=JVM_FEATURES_$variant
 221     JVM_FEATURES_FOR_VARIANT=${!features_var_name}
 222     printf "$variant: \'$JVM_FEATURES_FOR_VARIANT\' "
 223   done
 224   printf "\n"
 225 
 226   printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n"
 227   printf "* Version string: $VERSION_STRING ($VERSION_SHORT)\n"
 228 
 229   printf "\n"
 230   printf "Tools summary:\n"
 231   if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
 232     printf "* Environment:    $WINDOWS_ENV_VENDOR version $WINDOWS_ENV_VERSION (root at $WINDOWS_ENV_ROOT_PATH)\n"
 233   fi
 234   printf "* Boot JDK:       $BOOT_JDK_VERSION (at $BOOT_JDK)\n"
 235   printf "* Toolchain:      $TOOLCHAIN_TYPE ($TOOLCHAIN_DESCRIPTION)\n"
 236   printf "* C Compiler:     Version $CC_VERSION_NUMBER (at $CC)\n"
 237   printf "* C++ Compiler:   Version $CXX_VERSION_NUMBER (at $CXX)\n"
 238 
 239   printf "\n"
 240   printf "Build performance summary:\n"
 241   printf "* Cores to use:   $JOBS\n"
 242   printf "* Memory limit:   $MEMORY_SIZE MB\n"
 243   if test "x$CCACHE_STATUS" != "x"; then
 244     printf "* ccache status:  $CCACHE_STATUS\n"
 245   fi


< prev index next >