1 #
2 # Copyright (c) 2011, 2014, 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
185 else
186 if test "x$IS_RECONFIGURE" != "xyes"; then
187 printf "A configuration has been successfully checked but not created\n"
188 else
189 printf "The existing configuration has been successfully checked in\n%s\n" "$OUTPUT_ROOT"
190 fi
191 fi
192 if test "x$CONFIGURE_COMMAND_LINE" != x; then
193 printf "using configure arguments '$CONFIGURE_COMMAND_LINE'.\n"
194 else
195 printf "using default settings.\n"
196 fi
197
198 printf "\n"
199 printf "Configuration summary:\n"
200 printf "* Debug level: $DEBUG_LEVEL\n"
201 printf "* HS debug level: $HOTSPOT_DEBUG_LEVEL\n"
202 printf "* JDK variant: $JDK_VARIANT\n"
203 printf "* JVM variants: $with_jvm_variants\n"
204 printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n"
205
206 printf "\n"
207 printf "Tools summary:\n"
208 if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
209 printf "* Environment: $WINDOWS_ENV_VENDOR version $WINDOWS_ENV_VERSION (root at $WINDOWS_ENV_ROOT_PATH)\n"
210 fi
211 printf "* Boot JDK: $BOOT_JDK_VERSION (at $BOOT_JDK)\n"
212 if test "x$TOOLCHAIN_VERSION" != "x"; then
213 print_version=" $TOOLCHAIN_VERSION"
214 fi
215 printf "* Toolchain: $TOOLCHAIN_TYPE ($TOOLCHAIN_DESCRIPTION$print_version)\n"
216 printf "* C Compiler: Version $CC_VERSION_NUMBER (at $CC)\n"
217 printf "* C++ Compiler: Version $CXX_VERSION_NUMBER (at $CXX)\n"
218
219 printf "\n"
220 printf "Build performance summary:\n"
221 printf "* Cores to use: $JOBS\n"
222 printf "* Memory limit: $MEMORY_SIZE MB\n"
223 if test "x$CCACHE_STATUS" != "x"; then
224 printf "* ccache status: $CCACHE_STATUS\n"
|
1 #
2 # Copyright (c) 2011, 2015, 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
185 else
186 if test "x$IS_RECONFIGURE" != "xyes"; then
187 printf "A configuration has been successfully checked but not created\n"
188 else
189 printf "The existing configuration has been successfully checked in\n%s\n" "$OUTPUT_ROOT"
190 fi
191 fi
192 if test "x$CONFIGURE_COMMAND_LINE" != x; then
193 printf "using configure arguments '$CONFIGURE_COMMAND_LINE'.\n"
194 else
195 printf "using default settings.\n"
196 fi
197
198 printf "\n"
199 printf "Configuration summary:\n"
200 printf "* Debug level: $DEBUG_LEVEL\n"
201 printf "* HS debug level: $HOTSPOT_DEBUG_LEVEL\n"
202 printf "* JDK variant: $JDK_VARIANT\n"
203 printf "* JVM variants: $with_jvm_variants\n"
204 printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n"
205 printf "* Version string: $VERSION_STRING ($VERSION_SHORT)\n"
206
207 printf "\n"
208 printf "Tools summary:\n"
209 if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
210 printf "* Environment: $WINDOWS_ENV_VENDOR version $WINDOWS_ENV_VERSION (root at $WINDOWS_ENV_ROOT_PATH)\n"
211 fi
212 printf "* Boot JDK: $BOOT_JDK_VERSION (at $BOOT_JDK)\n"
213 if test "x$TOOLCHAIN_VERSION" != "x"; then
214 print_version=" $TOOLCHAIN_VERSION"
215 fi
216 printf "* Toolchain: $TOOLCHAIN_TYPE ($TOOLCHAIN_DESCRIPTION$print_version)\n"
217 printf "* C Compiler: Version $CC_VERSION_NUMBER (at $CC)\n"
218 printf "* C++ Compiler: Version $CXX_VERSION_NUMBER (at $CXX)\n"
219
220 printf "\n"
221 printf "Build performance summary:\n"
222 printf "* Cores to use: $JOBS\n"
223 printf "* Memory limit: $MEMORY_SIZE MB\n"
224 if test "x$CCACHE_STATUS" != "x"; then
225 printf "* ccache status: $CCACHE_STATUS\n"
|