author | ihse |
Mon, 24 Feb 2014 12:16:58 +0100 | |
changeset 22721 | 63761da45392 |
parent 22717 | aa6f400923a9 |
child 23424 | 65039fb99fda |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
13132 | 26 |
AC_DEFUN_ONCE([HELP_SETUP_DEPENDENCY_HELP], |
27 |
[ |
|
20363 | 28 |
AC_CHECK_PROGS(PKGHANDLER, apt-get yum port pkgutil pkgadd) |
13132 | 29 |
]) |
30 |
||
31 |
AC_DEFUN([HELP_MSG_MISSING_DEPENDENCY], |
|
32 |
[ |
|
20363 | 33 |
# Print a helpful message on how to acquire the necessary build dependency. |
20654 | 34 |
# $1 is the help tag: freetype, cups, pulse, alsa etc |
20363 | 35 |
MISSING_DEPENDENCY=$1 |
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
36 |
|
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
37 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
38 |
cygwin_help $MISSING_DEPENDENCY |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
39 |
elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
40 |
msys_help $MISSING_DEPENDENCY |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
41 |
else |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
42 |
PKGHANDLER_COMMAND= |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
|
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
44 |
case $PKGHANDLER in |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
45 |
apt-get) |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
46 |
apt_help $MISSING_DEPENDENCY ;; |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
47 |
yum) |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
48 |
yum_help $MISSING_DEPENDENCY ;; |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
49 |
port) |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
50 |
port_help $MISSING_DEPENDENCY ;; |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
51 |
pkgutil) |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
52 |
pkgutil_help $MISSING_DEPENDENCY ;; |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
53 |
pkgadd) |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
54 |
pkgadd_help $MISSING_DEPENDENCY ;; |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
55 |
esac |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
|
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
57 |
if test "x$PKGHANDLER_COMMAND" != x; then |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
58 |
HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'." |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
59 |
fi |
20363 | 60 |
fi |
13132 | 61 |
]) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
62 |
|
14111 | 63 |
cygwin_help() { |
20363 | 64 |
case $1 in |
14111 | 65 |
unzip) |
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
66 |
PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P unzip )" |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
67 |
HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'." |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
68 |
;; |
14111 | 69 |
zip) |
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
70 |
PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P zip )" |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
71 |
HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'." |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
72 |
;; |
14111 | 73 |
make) |
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
74 |
PKGHANDLER_COMMAND="( cd <location of cygwin setup.exe> && cmd /c setup -q -P make )" |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
75 |
HELP_MSG="You might be able to fix this by running '$PKGHANDLER_COMMAND'." |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
76 |
;; |
20654 | 77 |
freetype) |
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
78 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
79 |
HELP_MSG="To install freetype, run: |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
80 |
wget \"http://gnuwin32.sourceforge.net/downlinks/freetype.php\" -O /tmp/freetype-setup.exe |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
81 |
chmod +x /tmp/freetype-setup.exe |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
82 |
/tmp/freetype-setup.exe |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
83 |
Follow GUI prompts, and install to default directory \"C:\Program Files (x86)\GnuWin32\". |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
84 |
After installation, locate lib/libfreetype.dll.a and make a copy with the name freetype.dll." |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
85 |
else |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
86 |
HELP_MSG="You need to build a 64-bit version of freetype. |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
87 |
This is not readily available. |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
88 |
You can find source code and build instructions on |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
89 |
http://www.freetype.org/ |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
90 |
If you put the resulting build in \"C:\Program Files\GnuWin32\", it will be found automatically." |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
91 |
fi |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
92 |
;; |
20363 | 93 |
esac |
14111 | 94 |
} |
95 |
||
20648
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
96 |
msys_help() { |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
97 |
PKGHANDLER_COMMAND="" |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
98 |
} |
d4ac4db6e70c
8001925: Add useful help messages if freetype is not found on Windows
ihse
parents:
20363
diff
changeset
|
99 |
|
13132 | 100 |
apt_help() { |
20363 | 101 |
case $1 in |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
102 |
devkit) |
20363 | 103 |
PKGHANDLER_COMMAND="sudo apt-get install build-essential" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
104 |
openjdk) |
20363 | 105 |
PKGHANDLER_COMMAND="sudo apt-get install openjdk-7-jdk" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
106 |
alsa) |
20363 | 107 |
PKGHANDLER_COMMAND="sudo apt-get install libasound2-dev" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
108 |
cups) |
20363 | 109 |
PKGHANDLER_COMMAND="sudo apt-get install libcups2-dev" ;; |
20654 | 110 |
freetype) |
20363 | 111 |
PKGHANDLER_COMMAND="sudo apt-get install libfreetype6-dev" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
112 |
pulse) |
20363 | 113 |
PKGHANDLER_COMMAND="sudo apt-get install libpulse-dev" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
114 |
x11) |
20363 | 115 |
PKGHANDLER_COMMAND="sudo apt-get install libX11-dev libxext-dev libxrender-dev libxtst-dev libxt-dev" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
ccache) |
20363 | 117 |
PKGHANDLER_COMMAND="sudo apt-get install ccache" ;; |
118 |
esac |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
119 |
} |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
120 |
|
13132 | 121 |
yum_help() { |
20363 | 122 |
case $1 in |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
123 |
devkit) |
20363 | 124 |
PKGHANDLER_COMMAND="sudo yum groupinstall \"Development Tools\"" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
125 |
openjdk) |
20363 | 126 |
PKGHANDLER_COMMAND="sudo yum install java-1.7.0-openjdk" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
127 |
alsa) |
20363 | 128 |
PKGHANDLER_COMMAND="sudo yum install alsa-lib-devel" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
129 |
cups) |
20363 | 130 |
PKGHANDLER_COMMAND="sudo yum install cups-devel" ;; |
20654 | 131 |
freetype) |
20363 | 132 |
PKGHANDLER_COMMAND="sudo yum install freetype-devel" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
133 |
pulse) |
20363 | 134 |
PKGHANDLER_COMMAND="sudo yum install pulseaudio-libs-devel" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
135 |
x11) |
20363 | 136 |
PKGHANDLER_COMMAND="sudo yum install libXtst-devel libXt-devel libXrender-devel" ;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
137 |
ccache) |
20363 | 138 |
PKGHANDLER_COMMAND="sudo yum install ccache" ;; |
139 |
esac |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
140 |
} |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
141 |
|
13132 | 142 |
port_help() { |
20363 | 143 |
PKGHANDLER_COMMAND="" |
13132 | 144 |
} |
145 |
||
146 |
pkgutil_help() { |
|
20363 | 147 |
PKGHANDLER_COMMAND="" |
13132 | 148 |
} |
149 |
||
150 |
pkgadd_help() { |
|
20363 | 151 |
PKGHANDLER_COMMAND="" |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
152 |
} |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
153 |
|
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
154 |
# This function will check if we're called from the "configure" wrapper while |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
155 |
# printing --help. If so, we will print out additional information that can |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
156 |
# only be extracted within the autoconf script, and then exit. This must be |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
157 |
# called at the very beginning in configure.ac. |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
158 |
AC_DEFUN_ONCE([HELP_PRINT_ADDITIONAL_HELP_AND_EXIT], |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
159 |
[ |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
160 |
if test "x$CONFIGURE_PRINT_TOOLCHAIN_LIST" != x; then |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
161 |
$PRINTF "The following toolchains are available as arguments to --with-toolchain-type.\n" |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
162 |
$PRINTF "Which are valid to use depends on the build platform.\n" |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
163 |
for toolchain in $VALID_TOOLCHAINS_all; do |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
164 |
# Use indirect variable referencing |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
165 |
toolchain_var_name=TOOLCHAIN_DESCRIPTION_$toolchain |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
166 |
TOOLCHAIN_DESCRIPTION=${!toolchain_var_name} |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
167 |
$PRINTF " %-10s %s\n" $toolchain "$TOOLCHAIN_DESCRIPTION" |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
168 |
done |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
169 |
|
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
170 |
# And now exit directly |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
171 |
exit 0 |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
172 |
fi |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
173 |
]) |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
174 |
|
13132 | 175 |
AC_DEFUN_ONCE([HELP_PRINT_SUMMARY_AND_WARNINGS], |
176 |
[ |
|
20363 | 177 |
# Finally output some useful information to the user |
13132 | 178 |
|
20363 | 179 |
printf "\n" |
180 |
printf "====================================================\n" |
|
22717
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
181 |
if test "x$no_create" != "xyes"; then |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
182 |
if test "x$IS_RECONFIGURE" != "xyes"; then |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
183 |
printf "A new configuration has been successfully created in\n %s\n" "$OUTPUT_ROOT" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
184 |
else |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
185 |
printf "The existing configuration has been successfully updated in\n %s\n" "$OUTPUT_ROOT" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
186 |
fi |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
187 |
else |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
188 |
if test "x$IS_RECONFIGURE" != "xyes"; then |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
189 |
printf "A configuration has been successfully checked but not created\n" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
190 |
else |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
191 |
printf "The existing configuration has been successfully checked in\n %s\n" "$OUTPUT_ROOT" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
192 |
fi |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
193 |
fi |
20363 | 194 |
if test "x$CONFIGURE_COMMAND_LINE" != x; then |
195 |
printf "using configure arguments '$CONFIGURE_COMMAND_LINE'.\n" |
|
196 |
else |
|
197 |
printf "using default settings.\n" |
|
198 |
fi |
|
13132 | 199 |
|
20363 | 200 |
printf "\n" |
201 |
printf "Configuration summary:\n" |
|
202 |
printf "* Debug level: $DEBUG_LEVEL\n" |
|
203 |
printf "* JDK variant: $JDK_VARIANT\n" |
|
204 |
printf "* JVM variants: $with_jvm_variants\n" |
|
205 |
printf "* OpenJDK target: OS: $OPENJDK_TARGET_OS, CPU architecture: $OPENJDK_TARGET_CPU_ARCH, address length: $OPENJDK_TARGET_CPU_BITS\n" |
|
14111 | 206 |
|
20363 | 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" |
|
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
213 |
printf "* Toolchain: $TOOLCHAIN_TYPE ($TOOLCHAIN_DESCRIPTION)\n" |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
214 |
printf "* C Compiler: Version $CC_VERSION_NUMBER (at $CC)\n" |
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22717
diff
changeset
|
215 |
printf "* C++ Compiler: Version $CXX_VERSION_NUMBER (at $CXX)\n" |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
216 |
|
20363 | 217 |
printf "\n" |
218 |
printf "Build performance summary:\n" |
|
219 |
printf "* Cores to use: $JOBS\n" |
|
220 |
printf "* Memory limit: $MEMORY_SIZE MB\n" |
|
22474 | 221 |
if test "x$CCACHE_STATUS" != "x"; then |
222 |
printf "* ccache status: $CCACHE_STATUS\n" |
|
223 |
fi |
|
20363 | 224 |
printf "\n" |
13132 | 225 |
|
20363 | 226 |
if test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = "xyes"; then |
227 |
printf "NOTE: You have requested to build more than one version of the JVM, which\n" |
|
228 |
printf "will result in longer build times.\n" |
|
229 |
printf "\n" |
|
230 |
fi |
|
13132 | 231 |
|
20363 | 232 |
if test "x$FOUND_ALT_VARIABLES" != "x"; then |
233 |
printf "WARNING: You have old-style ALT_ environment variables set.\n" |
|
234 |
printf "These are not respected, and will be ignored. It is recommended\n" |
|
235 |
printf "that you clean your environment. The following variables are set:\n" |
|
236 |
printf "$FOUND_ALT_VARIABLES\n" |
|
237 |
printf "\n" |
|
238 |
fi |
|
13132 | 239 |
|
20363 | 240 |
if test "x$OUTPUT_DIR_IS_LOCAL" != "xyes"; then |
241 |
printf "WARNING: Your build output directory is not on a local disk.\n" |
|
242 |
printf "This will severely degrade build performance!\n" |
|
243 |
printf "It is recommended that you create an output directory on a local disk,\n" |
|
244 |
printf "and run the configure script again from that directory.\n" |
|
245 |
printf "\n" |
|
246 |
fi |
|
13132 | 247 |
|
22717
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
248 |
if test "x$IS_RECONFIGURE" = "xyes" && test "x$no_create" != "xyes"; then |
20363 | 249 |
printf "WARNING: The result of this configuration has overridden an older\n" |
250 |
printf "configuration. You *should* run 'make clean' to make sure you get a\n" |
|
251 |
printf "proper build. Failure to do so might result in strange build problems.\n" |
|
252 |
printf "\n" |
|
253 |
fi |
|
22717
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
254 |
|
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
255 |
if test "x$IS_RECONFIGURE" != "xyes" && test "x$no_create" = "xyes"; then |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
256 |
printf "WARNING: The result of this configuration was not saved.\n" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
257 |
printf "You should run without '--no-create | -n' to create the configuration.\n" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
258 |
printf "\n" |
aa6f400923a9
8034979: Configuration help messages don't consider --no-create
mduigou
parents:
22474
diff
changeset
|
259 |
fi |
13132 | 260 |
]) |