author | chegar |
Tue, 21 Nov 2017 11:33:17 +0000 | |
branch | http-client-branch |
changeset 55845 | a88515bdd90a |
parent 47479 | 77a5f2ef1807 |
child 48032 | 9240097e2821 |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
43046
717ce6d4eaa1
8171409: Create a smoother configure experience on macosx
ihse
parents:
42136
diff
changeset
|
2 |
# Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
4 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
10 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
15 |
# accompanied this code). |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
16 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
20 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
23 |
# questions. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
24 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
25 |
|
34923 | 26 |
# Create a function/macro that takes a series of named arguments. The call is |
27 |
# similar to AC_DEFUN, but the setup of the function looks like this: |
|
28 |
# BASIC_DEFUN_NAMED([MYFUNC], [FOO *BAR], [$@], [ |
|
29 |
# ... do something |
|
30 |
# AC_MSG_NOTICE([Value of BAR is ARG_BAR]) |
|
31 |
# ]) |
|
32 |
# A star (*) in front of a named argument means that it is required and it's |
|
33 |
# presence will be verified. To pass e.g. the first value as a normal indexed |
|
34 |
# argument, use [m4_shift($@)] as the third argument instead of [$@]. These |
|
35 |
# arguments are referenced in the function by their name prefixed by ARG_, e.g. |
|
36 |
# "ARG_FOO". |
|
37 |
# |
|
38 |
# The generated function can be called like this: |
|
35747 | 39 |
# MYFUNC(FOO: [foo-val], |
40 |
# BAR: [ |
|
34923 | 41 |
# $ECHO hello world |
42 |
# ]) |
|
35747 | 43 |
# Note that the argument value must start on the same line as the argument name. |
34923 | 44 |
# |
45 |
# Argument 1: Name of the function to define |
|
46 |
# Argument 2: List of legal named arguments, with a * prefix for required arguments |
|
47 |
# Argument 3: Argument array to treat as named, typically $@ |
|
48 |
# Argument 4: The main function body |
|
49 |
AC_DEFUN([BASIC_DEFUN_NAMED], |
|
50 |
[ |
|
51 |
AC_DEFUN($1, [ |
|
52 |
m4_foreach(arg, m4_split($2), [ |
|
53 |
m4_if(m4_bregexp(arg, [^\*]), -1, |
|
54 |
[ |
|
55 |
m4_set_add(legal_named_args, arg) |
|
56 |
], |
|
57 |
[ |
|
58 |
m4_set_add(legal_named_args, m4_substr(arg, 1)) |
|
59 |
m4_set_add(required_named_args, m4_substr(arg, 1)) |
|
60 |
] |
|
61 |
) |
|
62 |
]) |
|
63 |
||
64 |
m4_foreach([arg], [$3], [ |
|
65 |
m4_define(arg_name, m4_substr(arg, 0, m4_bregexp(arg, [: ]))) |
|
66 |
m4_set_contains(legal_named_args, arg_name, [],[AC_MSG_ERROR([Internal error: arg_name is not a valid named argument to [$1]. Valid arguments are 'm4_set_contents(legal_named_args, [ ])'.])]) |
|
67 |
m4_set_remove(required_named_args, arg_name) |
|
68 |
m4_set_remove(legal_named_args, arg_name) |
|
69 |
m4_pushdef([ARG_][]arg_name, m4_substr(arg, m4_incr(m4_incr(m4_bregexp(arg, [: ]))))) |
|
70 |
m4_set_add(defined_args, arg_name) |
|
71 |
m4_undefine([arg_name]) |
|
72 |
]) |
|
73 |
m4_set_empty(required_named_args, [], [ |
|
74 |
AC_MSG_ERROR([Internal error: Required named arguments are missing for [$1]. Missing arguments: 'm4_set_contents(required_named_args, [ ])']) |
|
75 |
]) |
|
76 |
m4_foreach([arg], m4_indir([m4_dquote]m4_set_listc([legal_named_args])), [ |
|
77 |
m4_pushdef([ARG_][]arg, []) |
|
78 |
m4_set_add(defined_args, arg) |
|
79 |
]) |
|
80 |
m4_set_delete(legal_named_args) |
|
81 |
m4_set_delete(required_named_args) |
|
82 |
||
83 |
# Execute function body |
|
84 |
$4 |
|
85 |
||
86 |
m4_foreach([arg], m4_indir([m4_dquote]m4_set_listc([defined_args])), [ |
|
87 |
m4_popdef([ARG_][]arg) |
|
88 |
]) |
|
89 |
||
90 |
m4_set_delete(defined_args) |
|
91 |
]) |
|
92 |
]) |
|
93 |
||
17592 | 94 |
# Test if $1 is a valid argument to $3 (often is $JAVA passed as $3) |
20363 | 95 |
# If so, then append $1 to $2 \ |
17592 | 96 |
# Also set JVM_ARG_OK to true/false depending on outcome. |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
97 |
AC_DEFUN([ADD_JVM_ARG_IF_OK], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
98 |
[ |
20363 | 99 |
$ECHO "Check if jvm arg is ok: $1" >&AS_MESSAGE_LOG_FD |
100 |
$ECHO "Command: $3 $1 -version" >&AS_MESSAGE_LOG_FD |
|
101 |
OUTPUT=`$3 $1 -version 2>&1` |
|
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
102 |
FOUND_WARN=`$ECHO "$OUTPUT" | $GREP -i warn` |
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
103 |
FOUND_VERSION=`$ECHO $OUTPUT | $GREP " version \""` |
20363 | 104 |
if test "x$FOUND_VERSION" != x && test "x$FOUND_WARN" = x; then |
105 |
$2="[$]$2 $1" |
|
106 |
JVM_ARG_OK=true |
|
107 |
else |
|
108 |
$ECHO "Arg failed:" >&AS_MESSAGE_LOG_FD |
|
109 |
$ECHO "$OUTPUT" >&AS_MESSAGE_LOG_FD |
|
110 |
JVM_ARG_OK=false |
|
111 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
112 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
113 |
|
18421
0296625b6c1f
8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents:
18021
diff
changeset
|
114 |
# Appends a string to a path variable, only adding the : when needed. |
0296625b6c1f
8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents:
18021
diff
changeset
|
115 |
AC_DEFUN([BASIC_APPEND_TO_PATH], |
0296625b6c1f
8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents:
18021
diff
changeset
|
116 |
[ |
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
117 |
if test "x$2" != x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
118 |
if test "x[$]$1" = x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
119 |
$1="$2" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
120 |
else |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
121 |
$1="[$]$1:$2" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
122 |
fi |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
123 |
fi |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
124 |
]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
125 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
126 |
# Prepends a string to a path variable, only adding the : when needed. |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
127 |
AC_DEFUN([BASIC_PREPEND_TO_PATH], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
128 |
[ |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
129 |
if test "x$2" != x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
130 |
if test "x[$]$1" = x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
131 |
$1="$2" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
132 |
else |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
133 |
$1="$2:[$]$1" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
134 |
fi |
18421
0296625b6c1f
8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents:
18021
diff
changeset
|
135 |
fi |
0296625b6c1f
8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents:
18021
diff
changeset
|
136 |
]) |
0296625b6c1f
8017047: Can't use --with-java-devtools and --with-devkit at the same time
erikj
parents:
18021
diff
changeset
|
137 |
|
14111 | 138 |
# This will make sure the given variable points to a full and proper |
139 |
# path. This means: |
|
27586
e7cfdc266a70
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
27329
diff
changeset
|
140 |
# 1) There will be no spaces in the path. On unix platforms, |
14111 | 141 |
# spaces in the path will result in an error. On Windows, |
142 |
# the path will be rewritten using short-style to be space-free. |
|
143 |
# 2) The path will be absolute, and it will be in unix-style (on |
|
144 |
# cygwin). |
|
145 |
# $1: The name of the variable to fix |
|
146 |
AC_DEFUN([BASIC_FIXUP_PATH], |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
147 |
[ |
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
148 |
# Only process if variable expands to non-empty |
29662 | 149 |
|
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
150 |
if test "x[$]$1" != x; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
151 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
152 |
BASIC_FIXUP_PATH_CYGWIN($1) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
153 |
elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
154 |
BASIC_FIXUP_PATH_MSYS($1) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
155 |
else |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
156 |
# We're on a unix platform. Hooray! :) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
157 |
path="[$]$1" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
158 |
has_space=`$ECHO "$path" | $GREP " "` |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
159 |
if test "x$has_space" != x; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
160 |
AC_MSG_NOTICE([The path of $1, which resolves as "$path", is invalid.]) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
161 |
AC_MSG_ERROR([Spaces are not allowed in this path.]) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
162 |
fi |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
163 |
|
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
164 |
# Use eval to expand a potential ~ |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
165 |
eval path="$path" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
166 |
if test ! -f "$path" && test ! -d "$path"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
167 |
AC_MSG_ERROR([The path of $1, which resolves as "$path", is not found.]) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
168 |
fi |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
169 |
|
34491 | 170 |
if test -d "$path"; then |
171 |
$1="`cd "$path"; $THEPWDCMD -L`" |
|
172 |
else |
|
173 |
dir="`$DIRNAME "$path"`" |
|
174 |
base="`$BASENAME "$path"`" |
|
175 |
$1="`cd "$dir"; $THEPWDCMD -L`/$base" |
|
176 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
177 |
fi |
14111 | 178 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
179 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
180 |
|
14111 | 181 |
# This will make sure the given variable points to a executable |
182 |
# with a full and proper path. This means: |
|
27586
e7cfdc266a70
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
27329
diff
changeset
|
183 |
# 1) There will be no spaces in the path. On unix platforms, |
14111 | 184 |
# spaces in the path will result in an error. On Windows, |
185 |
# the path will be rewritten using short-style to be space-free. |
|
186 |
# 2) The path will be absolute, and it will be in unix-style (on |
|
187 |
# cygwin). |
|
188 |
# Any arguments given to the executable is preserved. |
|
189 |
# If the input variable does not have a directory specification, then |
|
190 |
# it need to be in the PATH. |
|
191 |
# $1: The name of the variable to fix |
|
192 |
AC_DEFUN([BASIC_FIXUP_EXECUTABLE], |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
193 |
[ |
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
194 |
# Only process if variable expands to non-empty |
29662 | 195 |
|
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
196 |
if test "x[$]$1" != x; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
197 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
198 |
BASIC_FIXUP_EXECUTABLE_CYGWIN($1) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
199 |
elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
200 |
BASIC_FIXUP_EXECUTABLE_MSYS($1) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
201 |
else |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
202 |
# We're on a unix platform. Hooray! :) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
203 |
# First separate the path from the arguments. This will split at the first |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
204 |
# space. |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
205 |
complete="[$]$1" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
206 |
path="${complete%% *}" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
207 |
tmp="$complete EOL" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
208 |
arguments="${tmp#* }" |
14111 | 209 |
|
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
210 |
# Cannot rely on the command "which" here since it doesn't always work. |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
211 |
is_absolute_path=`$ECHO "$path" | $GREP ^/` |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
212 |
if test -z "$is_absolute_path"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
213 |
# Path to executable is not absolute. Find it. |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
214 |
IFS_save="$IFS" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
215 |
IFS=: |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
216 |
for p in $PATH; do |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
217 |
if test -f "$p/$path" && test -x "$p/$path"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
218 |
new_path="$p/$path" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
219 |
break |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
220 |
fi |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
221 |
done |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
222 |
IFS="$IFS_save" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
223 |
else |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
224 |
# This is an absolute path, we can use it without further modifications. |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
225 |
new_path="$path" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
226 |
fi |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
227 |
|
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
228 |
if test "x$new_path" = x; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
229 |
AC_MSG_NOTICE([The path of $1, which resolves as "$complete", is not found.]) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
230 |
has_space=`$ECHO "$complete" | $GREP " "` |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
231 |
if test "x$has_space" != x; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
232 |
AC_MSG_NOTICE([This might be caused by spaces in the path, which is not allowed.]) |
14736
ee810661e3d1
8001901: build-infra: Fix "misbehaving" which command on Solaris
erikj
parents:
14563
diff
changeset
|
233 |
fi |
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
234 |
AC_MSG_ERROR([Cannot locate the the path of $1]) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
235 |
fi |
14736
ee810661e3d1
8001901: build-infra: Fix "misbehaving" which command on Solaris
erikj
parents:
14563
diff
changeset
|
236 |
fi |
20363 | 237 |
|
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
238 |
# Now join together the path and the arguments once again |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
239 |
if test "x$arguments" != xEOL; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
240 |
new_complete="$new_path ${arguments% *}" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
241 |
else |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
242 |
new_complete="$new_path" |
20363 | 243 |
fi |
14111 | 244 |
|
29064
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
245 |
if test "x$complete" != "x$new_complete"; then |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
246 |
$1="$new_complete" |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
247 |
AC_MSG_NOTICE([Rewriting $1 to "$new_complete"]) |
d5e775680e97
8073862: BASIC_FIXUP_EXECUTABLE should not fail on empty path
ihse
parents:
28908
diff
changeset
|
248 |
fi |
20363 | 249 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
250 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
251 |
|
14111 | 252 |
AC_DEFUN([BASIC_REMOVE_SYMBOLIC_LINKS], |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
253 |
[ |
20363 | 254 |
if test "x$OPENJDK_BUILD_OS" != xwindows; then |
255 |
# Follow a chain of symbolic links. Use readlink |
|
256 |
# where it exists, else fall back to horribly |
|
257 |
# complicated shell code. |
|
258 |
if test "x$READLINK_TESTED" != yes; then |
|
259 |
# On MacOSX there is a readlink tool with a different |
|
260 |
# purpose than the GNU readlink tool. Check the found readlink. |
|
261 |
ISGNU=`$READLINK --version 2>&1 | $GREP GNU` |
|
262 |
if test "x$ISGNU" = x; then |
|
263 |
# A readlink that we do not know how to use. |
|
264 |
# Are there other non-GNU readlinks out there? |
|
265 |
READLINK_TESTED=yes |
|
266 |
READLINK= |
|
267 |
fi |
|
268 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
269 |
|
20363 | 270 |
if test "x$READLINK" != x; then |
271 |
$1=`$READLINK -f [$]$1` |
|
272 |
else |
|
273 |
# Save the current directory for restoring afterwards |
|
274 |
STARTDIR=$PWD |
|
275 |
COUNTER=0 |
|
276 |
sym_link_dir=`$DIRNAME [$]$1` |
|
277 |
sym_link_file=`$BASENAME [$]$1` |
|
278 |
cd $sym_link_dir |
|
279 |
# Use -P flag to resolve symlinks in directories. |
|
280 |
cd `$THEPWDCMD -P` |
|
281 |
sym_link_dir=`$THEPWDCMD -P` |
|
282 |
# Resolve file symlinks |
|
283 |
while test $COUNTER -lt 20; do |
|
284 |
ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'` |
|
285 |
if test "x$ISLINK" == x; then |
|
286 |
# This is not a symbolic link! We are done! |
|
287 |
break |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
288 |
fi |
20363 | 289 |
# Again resolve directory symlinks since the target of the just found |
290 |
# link could be in a different directory |
|
291 |
cd `$DIRNAME $ISLINK` |
|
292 |
sym_link_dir=`$THEPWDCMD -P` |
|
293 |
sym_link_file=`$BASENAME $ISLINK` |
|
294 |
let COUNTER=COUNTER+1 |
|
295 |
done |
|
296 |
cd $STARTDIR |
|
297 |
$1=$sym_link_dir/$sym_link_file |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
298 |
fi |
20363 | 299 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
300 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
301 |
|
19763 | 302 |
# Register a --with argument but mark it as deprecated |
303 |
# $1: The name of the with argument to deprecate, not including --with- |
|
304 |
AC_DEFUN([BASIC_DEPRECATED_ARG_WITH], |
|
305 |
[ |
|
306 |
AC_ARG_WITH($1, [AS_HELP_STRING([--with-$1], |
|
307 |
[Deprecated. Option is kept for backwards compatibility and is ignored])], |
|
308 |
[AC_MSG_WARN([Option --with-$1 is deprecated and will be ignored.])]) |
|
309 |
]) |
|
310 |
||
20649
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
311 |
# Register a --enable argument but mark it as deprecated |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
312 |
# $1: The name of the with argument to deprecate, not including --enable- |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
313 |
# $2: The name of the argument to deprecate, in shell variable style (i.e. with _ instead of -) |
34493
c68e0ab807d8
8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents:
34491
diff
changeset
|
314 |
# $3: Messages to user. |
20649
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
315 |
AC_DEFUN([BASIC_DEPRECATED_ARG_ENABLE], |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
316 |
[ |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
317 |
AC_ARG_ENABLE($1, [AS_HELP_STRING([--enable-$1], |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
318 |
[Deprecated. Option is kept for backwards compatibility and is ignored])]) |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
319 |
if test "x$enable_$2" != x; then |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
320 |
AC_MSG_WARN([Option --enable-$1 is deprecated and will be ignored.]) |
34493
c68e0ab807d8
8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents:
34491
diff
changeset
|
321 |
|
c68e0ab807d8
8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents:
34491
diff
changeset
|
322 |
if test "x$3" != x; then |
c68e0ab807d8
8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents:
34491
diff
changeset
|
323 |
AC_MSG_WARN([$3]) |
c68e0ab807d8
8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents:
34491
diff
changeset
|
324 |
fi |
c68e0ab807d8
8036003: Add --with-debug-symbols=[none|internal|external|zipped]
ysuenaga
parents:
34491
diff
changeset
|
325 |
|
20649
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
326 |
fi |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
327 |
]) |
47ddc69a25a7
8026864: Deprecate --disable-macosx-runtime-support.
ihse
parents:
20647
diff
changeset
|
328 |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
329 |
AC_DEFUN_ONCE([BASIC_INIT], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
330 |
[ |
20363 | 331 |
# Save the original command line. This is passed to us by the wrapper configure script. |
332 |
AC_SUBST(CONFIGURE_COMMAND_LINE) |
|
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28602
diff
changeset
|
333 |
# Save the path variable before it gets changed |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28602
diff
changeset
|
334 |
ORIGINAL_PATH="$PATH" |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28602
diff
changeset
|
335 |
AC_SUBST(ORIGINAL_PATH) |
20363 | 336 |
DATE_WHEN_CONFIGURED=`LANG=C date` |
337 |
AC_SUBST(DATE_WHEN_CONFIGURED) |
|
338 |
AC_MSG_NOTICE([Configuration created at $DATE_WHEN_CONFIGURED.]) |
|
339 |
AC_MSG_NOTICE([configure script generated at timestamp $DATE_WHEN_GENERATED.]) |
|
14111 | 340 |
]) |
341 |
||
342 |
# Test that variable $1 denoting a program is not empty. If empty, exit with an error. |
|
343 |
# $1: variable to check |
|
344 |
AC_DEFUN([BASIC_CHECK_NONEMPTY], |
|
345 |
[ |
|
20363 | 346 |
if test "x[$]$1" = x; then |
22475 | 347 |
AC_MSG_ERROR([Could not find required tool for $1]) |
348 |
fi |
|
349 |
]) |
|
350 |
||
351 |
# Check that there are no unprocessed overridden variables left. |
|
352 |
# If so, they are an incorrect argument and we will exit with an error. |
|
353 |
AC_DEFUN([BASIC_CHECK_LEFTOVER_OVERRIDDEN], |
|
354 |
[ |
|
355 |
if test "x$CONFIGURE_OVERRIDDEN_VARIABLES" != x; then |
|
356 |
# Replace the separating ! with spaces before presenting for end user. |
|
357 |
unknown_variables=${CONFIGURE_OVERRIDDEN_VARIABLES//!/ } |
|
22478
5ca2b792a5fd
8033292: only warn, not fail, on unknown variables in configure
ihse
parents:
22475
diff
changeset
|
358 |
AC_MSG_WARN([The following variables might be unknown to configure: $unknown_variables]) |
20363 | 359 |
fi |
14111 | 360 |
]) |
361 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27586
diff
changeset
|
362 |
# Setup a tool for the given variable. If correctly specified by the user, |
22475 | 363 |
# use that value, otherwise search for the tool using the supplied code snippet. |
14111 | 364 |
# $1: variable to set |
22475 | 365 |
# $2: code snippet to call to look for the tool |
33396
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
366 |
# $3: code snippet to call if variable was used to find tool |
22475 | 367 |
AC_DEFUN([BASIC_SETUP_TOOL], |
14111 | 368 |
[ |
22475 | 369 |
# Publish this variable in the help. |
370 |
AC_ARG_VAR($1, [Override default value for $1]) |
|
371 |
||
32920 | 372 |
if [[ -z "${$1+x}" ]]; then |
22475 | 373 |
# The variable is not set by user, try to locate tool using the code snippet |
374 |
$2 |
|
375 |
else |
|
376 |
# The variable is set, but is it from the command line or the environment? |
|
377 |
||
378 |
# Try to remove the string !$1! from our list. |
|
379 |
try_remove_var=${CONFIGURE_OVERRIDDEN_VARIABLES//!$1!/} |
|
380 |
if test "x$try_remove_var" = "x$CONFIGURE_OVERRIDDEN_VARIABLES"; then |
|
381 |
# If it failed, the variable was not from the command line. Ignore it, |
|
382 |
# but warn the user (except for BASH, which is always set by the calling BASH). |
|
383 |
if test "x$1" != xBASH; then |
|
384 |
AC_MSG_WARN([Ignoring value of $1 from the environment. Use command line variables instead.]) |
|
385 |
fi |
|
386 |
# Try to locate tool using the code snippet |
|
387 |
$2 |
|
388 |
else |
|
389 |
# If it succeeded, then it was overridden by the user. We will use it |
|
390 |
# for the tool. |
|
391 |
||
392 |
# First remove it from the list of overridden variables, so we can test |
|
393 |
# for unknown variables in the end. |
|
394 |
CONFIGURE_OVERRIDDEN_VARIABLES="$try_remove_var" |
|
395 |
||
32920 | 396 |
# Check if we try to supply an empty value |
397 |
if test "x[$]$1" = x; then |
|
398 |
AC_MSG_NOTICE([Setting user supplied tool $1= (no value)]) |
|
399 |
AC_MSG_CHECKING([for $1]) |
|
400 |
AC_MSG_RESULT([disabled]) |
|
401 |
else |
|
402 |
# Check if the provided tool contains a complete path. |
|
403 |
tool_specified="[$]$1" |
|
404 |
tool_basename="${tool_specified##*/}" |
|
405 |
if test "x$tool_basename" = "x$tool_specified"; then |
|
406 |
# A command without a complete path is provided, search $PATH. |
|
407 |
AC_MSG_NOTICE([Will search for user supplied tool $1=$tool_basename]) |
|
408 |
AC_PATH_PROG($1, $tool_basename) |
|
409 |
if test "x[$]$1" = x; then |
|
410 |
AC_MSG_ERROR([User supplied tool $tool_basename could not be found]) |
|
411 |
fi |
|
412 |
else |
|
413 |
# Otherwise we believe it is a complete path. Use it as it is. |
|
414 |
AC_MSG_NOTICE([Will use user supplied tool $1=$tool_specified]) |
|
415 |
AC_MSG_CHECKING([for $1]) |
|
416 |
if test ! -x "$tool_specified"; then |
|
417 |
AC_MSG_RESULT([not found]) |
|
418 |
AC_MSG_ERROR([User supplied tool $1=$tool_specified does not exist or is not executable]) |
|
419 |
fi |
|
420 |
AC_MSG_RESULT([$tool_specified]) |
|
22475 | 421 |
fi |
422 |
fi |
|
423 |
fi |
|
33396
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
424 |
$3 |
22475 | 425 |
fi |
426 |
]) |
|
427 |
||
428 |
# Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool |
|
429 |
# $1: variable to set |
|
430 |
# $2: executable name (or list of names) to look for |
|
41462
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
431 |
# $3: [path] |
22475 | 432 |
AC_DEFUN([BASIC_PATH_PROGS], |
433 |
[ |
|
41462
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
434 |
BASIC_SETUP_TOOL($1, [AC_PATH_PROGS($1, $2, , $3)]) |
22475 | 435 |
]) |
436 |
||
437 |
# Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool |
|
438 |
# $1: variable to set |
|
439 |
# $2: executable name (or list of names) to look for |
|
440 |
AC_DEFUN([BASIC_CHECK_TOOLS], |
|
441 |
[ |
|
442 |
BASIC_SETUP_TOOL($1, [AC_CHECK_TOOLS($1, $2)]) |
|
443 |
]) |
|
444 |
||
445 |
# Like BASIC_PATH_PROGS but fails if no tool was found. |
|
446 |
# $1: variable to set |
|
447 |
# $2: executable name (or list of names) to look for |
|
41462
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
448 |
# $3: [path] |
22475 | 449 |
AC_DEFUN([BASIC_REQUIRE_PROGS], |
450 |
[ |
|
41462
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
451 |
BASIC_PATH_PROGS($1, $2, , $3) |
22475 | 452 |
BASIC_CHECK_NONEMPTY($1) |
453 |
]) |
|
454 |
||
455 |
# Like BASIC_SETUP_TOOL but fails if no tool was found. |
|
456 |
# $1: variable to set |
|
457 |
# $2: autoconf macro to call to look for the special tool |
|
458 |
AC_DEFUN([BASIC_REQUIRE_SPECIAL], |
|
459 |
[ |
|
460 |
BASIC_SETUP_TOOL($1, [$2]) |
|
461 |
BASIC_CHECK_NONEMPTY($1) |
|
14111 | 462 |
]) |
463 |
||
464 |
# Setup the most fundamental tools that relies on not much else to set up, |
|
465 |
# but is used by much of the early bootstrap code. |
|
466 |
AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS], |
|
467 |
[ |
|
20363 | 468 |
# Start with tools that do not need have cross compilation support |
469 |
# and can be expected to be found in the default PATH. These tools are |
|
32921
8e0250dfa145
8138761: Improved handling of libffi, and cleanup of libraries.m4
ihse
parents:
32920
diff
changeset
|
470 |
# used by configure. |
14111 | 471 |
|
20363 | 472 |
# First are all the simple required tools. |
22475 | 473 |
BASIC_REQUIRE_PROGS(BASENAME, basename) |
474 |
BASIC_REQUIRE_PROGS(BASH, bash) |
|
475 |
BASIC_REQUIRE_PROGS(CAT, cat) |
|
476 |
BASIC_REQUIRE_PROGS(CHMOD, chmod) |
|
477 |
BASIC_REQUIRE_PROGS(CMP, cmp) |
|
478 |
BASIC_REQUIRE_PROGS(COMM, comm) |
|
479 |
BASIC_REQUIRE_PROGS(CP, cp) |
|
480 |
BASIC_REQUIRE_PROGS(CUT, cut) |
|
481 |
BASIC_REQUIRE_PROGS(DATE, date) |
|
482 |
BASIC_REQUIRE_PROGS(DIFF, [gdiff diff]) |
|
483 |
BASIC_REQUIRE_PROGS(DIRNAME, dirname) |
|
484 |
BASIC_REQUIRE_PROGS(ECHO, echo) |
|
485 |
BASIC_REQUIRE_PROGS(EXPR, expr) |
|
486 |
BASIC_REQUIRE_PROGS(FILE, file) |
|
487 |
BASIC_REQUIRE_PROGS(FIND, find) |
|
488 |
BASIC_REQUIRE_PROGS(HEAD, head) |
|
37972 | 489 |
BASIC_REQUIRE_PROGS(GUNZIP, gunzip) |
490 |
BASIC_REQUIRE_PROGS(GZIP, pigz gzip) |
|
22475 | 491 |
BASIC_REQUIRE_PROGS(LN, ln) |
492 |
BASIC_REQUIRE_PROGS(LS, ls) |
|
493 |
BASIC_REQUIRE_PROGS(MKDIR, mkdir) |
|
494 |
BASIC_REQUIRE_PROGS(MKTEMP, mktemp) |
|
495 |
BASIC_REQUIRE_PROGS(MV, mv) |
|
496 |
BASIC_REQUIRE_PROGS(NAWK, [nawk gawk awk]) |
|
497 |
BASIC_REQUIRE_PROGS(PRINTF, printf) |
|
498 |
BASIC_REQUIRE_PROGS(RM, rm) |
|
33052 | 499 |
BASIC_REQUIRE_PROGS(RMDIR, rmdir) |
22475 | 500 |
BASIC_REQUIRE_PROGS(SH, sh) |
501 |
BASIC_REQUIRE_PROGS(SORT, sort) |
|
502 |
BASIC_REQUIRE_PROGS(TAIL, tail) |
|
37972 | 503 |
BASIC_REQUIRE_PROGS(TAR, gtar tar) |
22475 | 504 |
BASIC_REQUIRE_PROGS(TEE, tee) |
505 |
BASIC_REQUIRE_PROGS(TOUCH, touch) |
|
506 |
BASIC_REQUIRE_PROGS(TR, tr) |
|
507 |
BASIC_REQUIRE_PROGS(UNAME, uname) |
|
508 |
BASIC_REQUIRE_PROGS(UNIQ, uniq) |
|
509 |
BASIC_REQUIRE_PROGS(WC, wc) |
|
510 |
BASIC_REQUIRE_PROGS(WHICH, which) |
|
511 |
BASIC_REQUIRE_PROGS(XARGS, xargs) |
|
14111 | 512 |
|
20363 | 513 |
# Then required tools that require some special treatment. |
22475 | 514 |
BASIC_REQUIRE_SPECIAL(AWK, [AC_PROG_AWK]) |
515 |
BASIC_REQUIRE_SPECIAL(GREP, [AC_PROG_GREP]) |
|
516 |
BASIC_REQUIRE_SPECIAL(EGREP, [AC_PROG_EGREP]) |
|
517 |
BASIC_REQUIRE_SPECIAL(FGREP, [AC_PROG_FGREP]) |
|
518 |
BASIC_REQUIRE_SPECIAL(SED, [AC_PROG_SED]) |
|
14111 | 519 |
|
20363 | 520 |
# Always force rm. |
521 |
RM="$RM -f" |
|
14111 | 522 |
|
20363 | 523 |
# pwd behaves differently on various platforms and some don't support the -L flag. |
524 |
# Always use the bash builtin pwd to get uniform behavior. |
|
525 |
THEPWDCMD=pwd |
|
17662
8cae100e6f14
8014003: New build does not handle symlinks in workspace path
erikj
parents:
17661
diff
changeset
|
526 |
|
20363 | 527 |
# These are not required on all platforms |
22475 | 528 |
BASIC_PATH_PROGS(CYGPATH, cygpath) |
529 |
BASIC_PATH_PROGS(READLINK, [greadlink readlink]) |
|
530 |
BASIC_PATH_PROGS(DF, df) |
|
25882 | 531 |
BASIC_PATH_PROGS(CPIO, [cpio bsdcpio]) |
32920 | 532 |
BASIC_PATH_PROGS(NICE, nice) |
44078
673240c54c2e
8176509: Use pandoc for converting build readme to html
ihse
parents:
43654
diff
changeset
|
533 |
BASIC_PATH_PROGS(PANDOC, pandoc) |
13697 | 534 |
]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
535 |
|
13697 | 536 |
# Setup basic configuration paths, and platform-specific stuff related to PATHs. |
537 |
AC_DEFUN_ONCE([BASIC_SETUP_PATHS], |
|
538 |
[ |
|
22722 | 539 |
# Save the current directory this script was started from |
20363 | 540 |
CURDIR="$PWD" |
14111 | 541 |
|
32716
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
542 |
# We might need to rewrite ORIGINAL_PATH, if it includes "#", to quote them |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
543 |
# for make. We couldn't do this when we retrieved ORIGINAL_PATH, since SED |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
544 |
# was not available at that time. |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
545 |
REWRITTEN_PATH=`$ECHO "$ORIGINAL_PATH" | $SED -e 's/#/\\\\#/g'` |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
546 |
if test "x$REWRITTEN_PATH" != "x$ORIGINAL_PATH"; then |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
547 |
ORIGINAL_PATH="$REWRITTEN_PATH" |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
548 |
AC_MSG_NOTICE([Rewriting ORIGINAL_PATH to $REWRITTEN_PATH]) |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
549 |
fi |
d3203fd9e447
8136764: ORIGINAL_PATH is broken if PATH contains directory with "#" in it's name
ihse
parents:
32715
diff
changeset
|
550 |
|
20363 | 551 |
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then |
552 |
PATH_SEP=";" |
|
553 |
BASIC_CHECK_PATHS_WINDOWS |
|
554 |
else |
|
555 |
PATH_SEP=":" |
|
556 |
fi |
|
557 |
AC_SUBST(PATH_SEP) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
558 |
|
22726
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
559 |
# We get the top-level directory from the supporting wrappers. |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
560 |
AC_MSG_CHECKING([for top-level directory]) |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
561 |
AC_MSG_RESULT([$TOPDIR]) |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
562 |
AC_SUBST(TOPDIR) |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
563 |
|
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
564 |
# We can only call BASIC_FIXUP_PATH after BASIC_CHECK_PATHS_WINDOWS. |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
565 |
BASIC_FIXUP_PATH(CURDIR) |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
566 |
BASIC_FIXUP_PATH(TOPDIR) |
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
567 |
|
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
568 |
# Locate the directory of this script. |
47217 | 569 |
AUTOCONF_DIR=$TOPDIR/make/autoconf |
35444 | 570 |
|
571 |
# Setup username (for use in adhoc version strings etc) |
|
572 |
# Outer [ ] to quote m4. |
|
573 |
[ USERNAME=`$ECHO "$USER" | $TR -d -c '[a-z][A-Z][0-9]'` ] |
|
574 |
AC_SUBST(USERNAME) |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
575 |
]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
576 |
|
30022 | 577 |
# Evaluates platform specific overrides for devkit variables. |
578 |
# $1: Name of variable |
|
579 |
AC_DEFUN([BASIC_EVAL_DEVKIT_VARIABLE], |
|
580 |
[ |
|
581 |
if test "x[$]$1" = x; then |
|
582 |
eval $1="\${$1_${OPENJDK_TARGET_CPU}}" |
|
583 |
fi |
|
584 |
]) |
|
585 |
||
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
586 |
AC_DEFUN_ONCE([BASIC_SETUP_DEVKIT], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
587 |
[ |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
588 |
AC_ARG_WITH([devkit], [AS_HELP_STRING([--with-devkit], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
589 |
[use this devkit for compilers, tools and resources])], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
590 |
[ |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
591 |
BASIC_FIXUP_PATH([with_devkit]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
592 |
DEVKIT_ROOT="$with_devkit" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
593 |
# Check for a meta data info file in the root of the devkit |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
594 |
if test -f "$DEVKIT_ROOT/devkit.info"; then |
30022 | 595 |
. $DEVKIT_ROOT/devkit.info |
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
596 |
# This potentially sets the following: |
30022 | 597 |
# A descriptive name of the devkit |
598 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_NAME]) |
|
599 |
# Corresponds to --with-extra-path |
|
600 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_EXTRA_PATH]) |
|
601 |
# Corresponds to --with-toolchain-path |
|
602 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_TOOLCHAIN_PATH]) |
|
603 |
# Corresponds to --with-sysroot |
|
604 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_SYSROOT]) |
|
605 |
||
606 |
# Identifies the Visual Studio version in the devkit |
|
607 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_VERSION]) |
|
608 |
# The Visual Studio include environment variable |
|
609 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_INCLUDE]) |
|
610 |
# The Visual Studio lib environment variable |
|
611 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_LIB]) |
|
612 |
# Corresponds to --with-msvcr-dll |
|
613 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_MSVCR_DLL]) |
|
614 |
# Corresponds to --with-msvcp-dll |
|
615 |
BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_MSVCP_DLL]) |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
616 |
fi |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
617 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
618 |
AC_MSG_CHECKING([for devkit]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
619 |
if test "x$DEVKIT_NAME" != x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
620 |
AC_MSG_RESULT([$DEVKIT_NAME in $DEVKIT_ROOT]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
621 |
else |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
622 |
AC_MSG_RESULT([$DEVKIT_ROOT]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
623 |
fi |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
624 |
|
30022 | 625 |
BASIC_PREPEND_TO_PATH([EXTRA_PATH],$DEVKIT_EXTRA_PATH) |
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
626 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
627 |
# Fallback default of just /bin if DEVKIT_PATH is not defined |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
628 |
if test "x$DEVKIT_TOOLCHAIN_PATH" = x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
629 |
DEVKIT_TOOLCHAIN_PATH="$DEVKIT_ROOT/bin" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
630 |
fi |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
631 |
BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$DEVKIT_TOOLCHAIN_PATH) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
632 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
633 |
# If DEVKIT_SYSROOT is set, use that, otherwise try a couple of known |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
634 |
# places for backwards compatiblity. |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
635 |
if test "x$DEVKIT_SYSROOT" != x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
636 |
SYSROOT="$DEVKIT_SYSROOT" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
637 |
elif test -d "$DEVKIT_ROOT/$host_alias/libc"; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
638 |
SYSROOT="$DEVKIT_ROOT/$host_alias/libc" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
639 |
elif test -d "$DEVKIT_ROOT/$host/sys-root"; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
640 |
SYSROOT="$DEVKIT_ROOT/$host/sys-root" |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
641 |
fi |
47479 | 642 |
|
643 |
if test "x$DEVKIT_ROOT" != x; then |
|
644 |
DEVKIT_LIB_DIR="$DEVKIT_ROOT/lib" |
|
645 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
|
646 |
DEVKIT_LIB_DIR="$DEVKIT_ROOT/lib64" |
|
647 |
fi |
|
648 |
AC_SUBST(DEVKIT_LIB_DIR) |
|
649 |
fi |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
650 |
] |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
651 |
) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
652 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
653 |
# You can force the sysroot if the sysroot encoded into the compiler tools |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
654 |
# is not correct. |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
655 |
AC_ARG_WITH(sys-root, [AS_HELP_STRING([--with-sys-root], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
656 |
[alias for --with-sysroot for backwards compatability])], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
657 |
[SYSROOT=$with_sys_root] |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
658 |
) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
659 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
660 |
AC_ARG_WITH(sysroot, [AS_HELP_STRING([--with-sysroot], |
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
661 |
[use this directory as sysroot])], |
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
662 |
[SYSROOT=$with_sysroot] |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
663 |
) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
664 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
665 |
AC_ARG_WITH([tools-dir], [AS_HELP_STRING([--with-tools-dir], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
666 |
[alias for --with-toolchain-path for backwards compatibility])], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
667 |
[BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$with_tools_dir)] |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
668 |
) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
669 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
670 |
AC_ARG_WITH([toolchain-path], [AS_HELP_STRING([--with-toolchain-path], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
671 |
[prepend these directories when searching for toolchain binaries (compilers etc)])], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
672 |
[BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$with_toolchain_path)] |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
673 |
) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
674 |
|
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
675 |
AC_ARG_WITH([extra-path], [AS_HELP_STRING([--with-extra-path], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
676 |
[prepend these directories to the default path])], |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
677 |
[BASIC_PREPEND_TO_PATH([EXTRA_PATH],$with_extra_path)] |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
678 |
) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
679 |
|
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
680 |
if test "x$OPENJDK_BUILD_OS" = "xmacosx"; then |
31123 | 681 |
# If a devkit has been supplied, find xcodebuild in the toolchain_path. |
682 |
# If not, detect if Xcode is installed by running xcodebuild -version |
|
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
683 |
# if no Xcode installed, xcodebuild exits with 1 |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
684 |
# if Xcode is installed, even if xcode-select is misconfigured, then it exits with 0 |
31123 | 685 |
if test "x$DEVKIT_ROOT" != x || /usr/bin/xcodebuild -version >/dev/null 2>&1; then |
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
686 |
# We need to use xcodebuild in the toolchain dir provided by the user, this will |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
687 |
# fall back on the stub binary in /usr/bin/xcodebuild |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
688 |
AC_PATH_PROG([XCODEBUILD], [xcodebuild], [/usr/bin/xcodebuild], [$TOOLCHAIN_PATH]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
689 |
else |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
690 |
# this should result in SYSROOT being empty, unless --with-sysroot is provided |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
691 |
# when only the command line tools are installed there are no SDKs, so headers |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
692 |
# are copied into the system frameworks |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
693 |
XCODEBUILD= |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
694 |
AC_SUBST(XCODEBUILD) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
695 |
fi |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27586
diff
changeset
|
696 |
|
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
697 |
AC_MSG_CHECKING([for sdk name]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
698 |
AC_ARG_WITH([sdk-name], [AS_HELP_STRING([--with-sdk-name], |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
699 |
[use the platform SDK of the given name. @<:@macosx@:>@])], |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
700 |
[SDKNAME=$with_sdk_name] |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
701 |
) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
702 |
AC_MSG_RESULT([$SDKNAME]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
703 |
|
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
704 |
# if toolchain path is specified then don't rely on system headers, they may not compile |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
705 |
HAVE_SYSTEM_FRAMEWORK_HEADERS=0 |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
706 |
test -z "$TOOLCHAIN_PATH" && \ |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
707 |
HAVE_SYSTEM_FRAMEWORK_HEADERS=`test ! -f /System/Library/Frameworks/Foundation.framework/Headers/Foundation.h; echo $?` |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
708 |
|
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
709 |
if test -z "$SYSROOT"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
710 |
if test -n "$XCODEBUILD"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
711 |
# if we don't have system headers, use default SDK name (last resort) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
712 |
if test -z "$SDKNAME" -a $HAVE_SYSTEM_FRAMEWORK_HEADERS -eq 0; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
713 |
SDKNAME=${SDKNAME:-macosx} |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
714 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
715 |
|
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
716 |
if test -n "$SDKNAME"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
717 |
# Call xcodebuild to determine SYSROOT |
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
718 |
SYSROOT=`"$XCODEBUILD" -sdk $SDKNAME -version | $GREP '^Path: ' | $SED 's/Path: //'` |
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
719 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
720 |
else |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
721 |
if test $HAVE_SYSTEM_FRAMEWORK_HEADERS -eq 0; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
722 |
AC_MSG_ERROR([No xcodebuild tool and no system framework headers found, use --with-sysroot or --with-sdk-name to provide a path to a valid SDK]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
723 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
724 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
725 |
else |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
726 |
# warn user if --with-sdk-name was also set |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
727 |
if test -n "$with_sdk_name"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
728 |
AC_MSG_WARN([Both SYSROOT and --with-sdk-name are set, only SYSROOT will be used]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
729 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
730 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
731 |
|
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
732 |
if test $HAVE_SYSTEM_FRAMEWORK_HEADERS -eq 0 -a -z "$SYSROOT"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
733 |
# If no system framework headers, then SYSROOT must be set, or we won't build |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
734 |
AC_MSG_ERROR([Unable to determine SYSROOT and no headers found in /System/Library/Frameworks. Check Xcode configuration, --with-sysroot or --with-sdk-name arguments.]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
735 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
736 |
|
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
737 |
# Perform a basic sanity test |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
738 |
if test ! -f "$SYSROOT/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
739 |
if test -z "$SYSROOT"; then |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
740 |
AC_MSG_ERROR([Unable to find required framework headers, provide a path to an SDK via --with-sysroot or --with-sdk-name and be sure Xcode is installed properly]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
741 |
else |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
742 |
AC_MSG_ERROR([Invalid SDK or SYSROOT path, dependent framework headers not found]) |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
743 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
744 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
745 |
|
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
746 |
# set SDKROOT too, Xcode tools will pick it up |
43383 | 747 |
SDKROOT="$SYSROOT" |
748 |
AC_SUBST(SDKROOT) |
|
25034
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
749 |
fi |
d9ca34c227b8
8043340: [macosx] Fix hard-wired paths to JavaVM.framework
ddehaven
parents:
23428
diff
changeset
|
750 |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
751 |
# Prepend the extra path to the global path |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
752 |
BASIC_PREPEND_TO_PATH([PATH],$EXTRA_PATH) |
22726
d984085c5ff2
8035730: Configure fails in cygwin if current dir is in /home/user
ihse
parents:
22722
diff
changeset
|
753 |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
754 |
AC_MSG_CHECKING([for sysroot]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
755 |
AC_MSG_RESULT([$SYSROOT]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
756 |
AC_MSG_CHECKING([for toolchain path]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
757 |
AC_MSG_RESULT([$TOOLCHAIN_PATH]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
758 |
AC_MSG_CHECKING([for extra path]) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
759 |
AC_MSG_RESULT([$EXTRA_PATH]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
760 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
761 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
762 |
AC_DEFUN_ONCE([BASIC_SETUP_OUTPUT_DIR], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
763 |
[ |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
764 |
|
20363 | 765 |
AC_ARG_WITH(conf-name, [AS_HELP_STRING([--with-conf-name], |
766 |
[use this as the name of the configuration @<:@generated from important configuration options@:>@])], |
|
767 |
[ CONF_NAME=${with_conf_name} ]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
768 |
|
20363 | 769 |
# Test from where we are running configure, in or outside of src root. |
22722 | 770 |
AC_MSG_CHECKING([where to store configuration]) |
47346 | 771 |
if test "x$CURDIR" = "x$TOPDIR" || test "x$CURDIR" = "x$CUSTOM_ROOT" \ |
47252 | 772 |
|| test "x$CURDIR" = "x$TOPDIR/make/autoconf" \ |
773 |
|| test "x$CURDIR" = "x$TOPDIR/make" ; then |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
774 |
# We are running configure from the src root. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
775 |
# Create a default ./build/target-variant-debuglevel output root. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
776 |
if test "x${CONF_NAME}" = x; then |
22722 | 777 |
AC_MSG_RESULT([in default location]) |
37402 | 778 |
CONF_NAME="${OPENJDK_TARGET_OS}-${OPENJDK_TARGET_CPU}-${JDK_VARIANT}-${JVM_VARIANTS_WITH_AND}-${DEBUG_LEVEL}" |
22722 | 779 |
else |
780 |
AC_MSG_RESULT([in build directory with custom name]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
781 |
fi |
47346 | 782 |
|
783 |
if test "x$CUSTOM_ROOT" != x; then |
|
784 |
OUTPUTDIR="${CUSTOM_ROOT}/build/${CONF_NAME}" |
|
785 |
else |
|
786 |
OUTPUTDIR="${TOPDIR}/build/${CONF_NAME}" |
|
787 |
fi |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
788 |
$MKDIR -p "$OUTPUTDIR" |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
789 |
if test ! -d "$OUTPUTDIR"; then |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
790 |
AC_MSG_ERROR([Could not create build directory $OUTPUTDIR]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
791 |
fi |
20363 | 792 |
else |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
793 |
# We are running configure from outside of the src dir. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
794 |
# Then use the current directory as output dir! |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
795 |
# If configuration is situated in normal build directory, just use the build |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
796 |
# directory name as configuration name, otherwise use the complete path. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
797 |
if test "x${CONF_NAME}" = x; then |
47252 | 798 |
CONF_NAME=`$ECHO $CURDIR | $SED -e "s!^${TOPDIR}/build/!!"` |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
799 |
fi |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
800 |
OUTPUTDIR="$CURDIR" |
22722 | 801 |
AC_MSG_RESULT([in current directory]) |
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
802 |
|
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
803 |
# WARNING: This might be a bad thing to do. You need to be sure you want to |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
804 |
# have a configuration in this directory. Do some sanity checks! |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
805 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
806 |
if test ! -e "$OUTPUTDIR/spec.gmk"; then |
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
807 |
# If we have a spec.gmk, we have run here before and we are OK. Otherwise, check for |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
808 |
# other files |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
809 |
files_present=`$LS $OUTPUTDIR` |
20363 | 810 |
# Configure has already touched config.log and confdefs.h in the current dir when this check |
14280
7d8ad47b2dbf
8002220: build-infra: update for mac, solaris 11 issues
erikj
parents:
14112
diff
changeset
|
811 |
# is performed. |
30022 | 812 |
filtered_files=`$ECHO "$files_present" \ |
813 |
| $SED -e 's/config.log//g' \ |
|
30419
8fb7370e2d33
8080082: configure fails if you create an empty directory and then run configure from it
ihse
parents:
30417
diff
changeset
|
814 |
-e 's/configure.log//g' \ |
8fb7370e2d33
8080082: configure fails if you create an empty directory and then run configure from it
ihse
parents:
30417
diff
changeset
|
815 |
-e 's/confdefs.h//g' \ |
8fb7370e2d33
8080082: configure fails if you create an empty directory and then run configure from it
ihse
parents:
30417
diff
changeset
|
816 |
-e 's/ //g' \ |
30022 | 817 |
| $TR -d '\n'` |
14280
7d8ad47b2dbf
8002220: build-infra: update for mac, solaris 11 issues
erikj
parents:
14112
diff
changeset
|
818 |
if test "x$filtered_files" != x; then |
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
819 |
AC_MSG_NOTICE([Current directory is $CURDIR.]) |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
820 |
AC_MSG_NOTICE([Since this is not the source root, configure will output the configuration here]) |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
821 |
AC_MSG_NOTICE([(as opposed to creating a configuration in <src_root>/build/<conf-name>).]) |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
822 |
AC_MSG_NOTICE([However, this directory is not empty. This is not allowed, since it could]) |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
823 |
AC_MSG_NOTICE([seriously mess up just about everything.]) |
47252 | 824 |
AC_MSG_NOTICE([Try 'cd $TOPDIR' and restart configure]) |
14112
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
825 |
AC_MSG_NOTICE([(or create a new empty directory and cd to it).]) |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
826 |
AC_MSG_ERROR([Will not continue creating configuration in $CURDIR]) |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
827 |
fi |
1b447f5cb0d1
8001897: build-infra: misc adjustments to configure script
ihse
parents:
14111
diff
changeset
|
828 |
fi |
20363 | 829 |
fi |
830 |
AC_MSG_CHECKING([what configuration name to use]) |
|
831 |
AC_MSG_RESULT([$CONF_NAME]) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
832 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
833 |
BASIC_FIXUP_PATH(OUTPUTDIR) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
834 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
835 |
CONFIGURESUPPORT_OUTPUTDIR="$OUTPUTDIR/configure-support" |
29848
13db4da8a496
8077563: 9-dev 1-prebuild fail: "configure: error: write failure creating /config.status"
erikj
parents:
29790
diff
changeset
|
836 |
$MKDIR -p "$CONFIGURESUPPORT_OUTPUTDIR" |
13db4da8a496
8077563: 9-dev 1-prebuild fail: "configure: error: write failure creating /config.status"
erikj
parents:
29790
diff
changeset
|
837 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
838 |
SPEC="$OUTPUTDIR/spec.gmk" |
43383 | 839 |
AC_SUBST(SPEC) |
840 |
AC_SUBST(CONF_NAME) |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
841 |
AC_SUBST(OUTPUTDIR) |
29790 | 842 |
AC_SUBST(CONFIGURESUPPORT_OUTPUTDIR) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
843 |
|
20363 | 844 |
# The spec.gmk file contains all variables for the make system. |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
845 |
AC_CONFIG_FILES([$OUTPUTDIR/spec.gmk:$AUTOCONF_DIR/spec.gmk.in]) |
20363 | 846 |
# The bootcycle-spec.gmk file contains support for boot cycle builds. |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
847 |
AC_CONFIG_FILES([$OUTPUTDIR/bootcycle-spec.gmk:$AUTOCONF_DIR/bootcycle-spec.gmk.in]) |
36506 | 848 |
# The buildjdk-spec.gmk file contains support for building a buildjdk when cross compiling. |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
849 |
AC_CONFIG_FILES([$OUTPUTDIR/buildjdk-spec.gmk:$AUTOCONF_DIR/buildjdk-spec.gmk.in]) |
20363 | 850 |
# The compare.sh is used to compare the build output to other builds. |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
851 |
AC_CONFIG_FILES([$OUTPUTDIR/compare.sh:$AUTOCONF_DIR/compare.sh.in]) |
20363 | 852 |
# The generated Makefile knows where the spec.gmk is and where the source is. |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
853 |
# You can run make from the OUTPUTDIR, or from the top-level Makefile |
20363 | 854 |
# which will look for generated configurations |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
855 |
AC_CONFIG_FILES([$OUTPUTDIR/Makefile:$AUTOCONF_DIR/Makefile.in]) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
856 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
857 |
|
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
858 |
#%%% Simple tools %%% |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
859 |
|
13697 | 860 |
# Check if we have found a usable version of make |
861 |
# $1: the path to a potential make binary (or empty) |
|
862 |
# $2: the description on how we found this |
|
863 |
AC_DEFUN([BASIC_CHECK_MAKE_VERSION], |
|
864 |
[ |
|
865 |
MAKE_CANDIDATE="$1" |
|
866 |
DESCRIPTION="$2" |
|
29865
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
867 |
|
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
868 |
# On Cygwin, we require a newer version of make than on other platforms |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
869 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
870 |
MAKE_VERSION_EXPR="-e 4\." |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
871 |
MAKE_REQUIRED_VERSION="4.0" |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
872 |
else |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
873 |
MAKE_VERSION_EXPR="-e 3\.8[[12]] -e 4\." |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
874 |
MAKE_REQUIRED_VERSION="3.81" |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
875 |
fi |
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
876 |
|
13697 | 877 |
if test "x$MAKE_CANDIDATE" != x; then |
878 |
AC_MSG_NOTICE([Testing potential make at $MAKE_CANDIDATE, found using $DESCRIPTION]) |
|
879 |
MAKE_VERSION_STRING=`$MAKE_CANDIDATE --version | $HEAD -n 1` |
|
880 |
IS_GNU_MAKE=`$ECHO $MAKE_VERSION_STRING | $GREP 'GNU Make'` |
|
881 |
if test "x$IS_GNU_MAKE" = x; then |
|
882 |
AC_MSG_NOTICE([Found potential make at $MAKE_CANDIDATE, however, this is not GNU Make. Ignoring.]) |
|
883 |
else |
|
29865
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
884 |
IS_MODERN_MAKE=`$ECHO $MAKE_VERSION_STRING | $GREP $MAKE_VERSION_EXPR` |
13697 | 885 |
if test "x$IS_MODERN_MAKE" = x; then |
29865
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
886 |
AC_MSG_NOTICE([Found GNU make at $MAKE_CANDIDATE, however this is not version $MAKE_REQUIRED_VERSION or later. (it is: $MAKE_VERSION_STRING). Ignoring.]) |
14111 | 887 |
else |
888 |
if test "x$OPENJDK_BUILD_OS" = "xwindows"; then |
|
889 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then |
|
890 |
MAKE_EXPECTED_ENV='cygwin' |
|
891 |
elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then |
|
892 |
MAKE_EXPECTED_ENV='msys' |
|
893 |
else |
|
894 |
AC_MSG_ERROR([Unknown Windows environment]) |
|
895 |
fi |
|
896 |
MAKE_BUILT_FOR=`$MAKE_CANDIDATE --version | $GREP -i 'built for'` |
|
897 |
IS_MAKE_CORRECT_ENV=`$ECHO $MAKE_BUILT_FOR | $GREP $MAKE_EXPECTED_ENV` |
|
898 |
else |
|
899 |
# Not relevant for non-Windows |
|
900 |
IS_MAKE_CORRECT_ENV=true |
|
901 |
fi |
|
902 |
if test "x$IS_MAKE_CORRECT_ENV" = x; then |
|
903 |
AC_MSG_NOTICE([Found GNU make version $MAKE_VERSION_STRING at $MAKE_CANDIDATE, but it is not for $MAKE_EXPECTED_ENV (it says: $MAKE_BUILT_FOR). Ignoring.]) |
|
904 |
else |
|
905 |
FOUND_MAKE=$MAKE_CANDIDATE |
|
906 |
BASIC_FIXUP_EXECUTABLE(FOUND_MAKE) |
|
907 |
fi |
|
13697 | 908 |
fi |
909 |
fi |
|
910 |
fi |
|
911 |
]) |
|
912 |
||
25854 | 913 |
AC_DEFUN([BASIC_CHECK_MAKE_OUTPUT_SYNC], |
914 |
[ |
|
915 |
# Check if make supports the output sync option and if so, setup using it. |
|
916 |
AC_MSG_CHECKING([if make --output-sync is supported]) |
|
917 |
if $MAKE --version -O > /dev/null 2>&1; then |
|
918 |
OUTPUT_SYNC_SUPPORTED=true |
|
919 |
AC_MSG_RESULT([yes]) |
|
920 |
AC_MSG_CHECKING([for output-sync value]) |
|
921 |
AC_ARG_WITH([output-sync], [AS_HELP_STRING([--with-output-sync], |
|
922 |
[set make output sync type if supported by make. @<:@recurse@:>@])], |
|
923 |
[OUTPUT_SYNC=$with_output_sync]) |
|
924 |
if test "x$OUTPUT_SYNC" = "x"; then |
|
925 |
OUTPUT_SYNC=none |
|
926 |
fi |
|
927 |
AC_MSG_RESULT([$OUTPUT_SYNC]) |
|
928 |
if ! $MAKE --version -O$OUTPUT_SYNC > /dev/null 2>&1; then |
|
929 |
AC_MSG_ERROR([Make did not the support the value $OUTPUT_SYNC as output sync type.]) |
|
930 |
fi |
|
931 |
else |
|
932 |
OUTPUT_SYNC_SUPPORTED=false |
|
933 |
AC_MSG_RESULT([no]) |
|
934 |
fi |
|
935 |
AC_SUBST(OUTPUT_SYNC_SUPPORTED) |
|
936 |
AC_SUBST(OUTPUT_SYNC) |
|
937 |
]) |
|
938 |
||
13697 | 939 |
# Goes looking for a usable version of GNU make. |
940 |
AC_DEFUN([BASIC_CHECK_GNU_MAKE], |
|
941 |
[ |
|
33396
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
942 |
BASIC_SETUP_TOOL([MAKE], |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
943 |
[ |
13697 | 944 |
# Try our hardest to locate a correct version of GNU make |
945 |
AC_PATH_PROGS(CHECK_GMAKE, gmake) |
|
946 |
BASIC_CHECK_MAKE_VERSION("$CHECK_GMAKE", [gmake in PATH]) |
|
947 |
||
948 |
if test "x$FOUND_MAKE" = x; then |
|
949 |
AC_PATH_PROGS(CHECK_MAKE, make) |
|
950 |
BASIC_CHECK_MAKE_VERSION("$CHECK_MAKE", [make in PATH]) |
|
951 |
fi |
|
952 |
||
953 |
if test "x$FOUND_MAKE" = x; then |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
954 |
if test "x$TOOLCHAIN_PATH" != x; then |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
955 |
# We have a toolchain path, check that as well before giving up. |
13697 | 956 |
OLD_PATH=$PATH |
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22726
diff
changeset
|
957 |
PATH=$TOOLCHAIN_PATH:$PATH |
13697 | 958 |
AC_PATH_PROGS(CHECK_TOOLSDIR_GMAKE, gmake) |
959 |
BASIC_CHECK_MAKE_VERSION("$CHECK_TOOLSDIR_GMAKE", [gmake in tools-dir]) |
|
960 |
if test "x$FOUND_MAKE" = x; then |
|
961 |
AC_PATH_PROGS(CHECK_TOOLSDIR_MAKE, make) |
|
962 |
BASIC_CHECK_MAKE_VERSION("$CHECK_TOOLSDIR_MAKE", [make in tools-dir]) |
|
963 |
fi |
|
964 |
PATH=$OLD_PATH |
|
965 |
fi |
|
966 |
fi |
|
967 |
||
968 |
if test "x$FOUND_MAKE" = x; then |
|
29865
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
969 |
AC_MSG_ERROR([Cannot find GNU make $MAKE_REQUIRED_VERSION or newer! Please put it in the path, or add e.g. MAKE=/opt/gmake3.81/make as argument to configure.]) |
13697 | 970 |
fi |
33396
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
971 |
],[ |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
972 |
# If MAKE was set by user, verify the version |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
973 |
BASIC_CHECK_MAKE_VERSION("$MAKE", [user supplied MAKE=$MAKE]) |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
974 |
if test "x$FOUND_MAKE" = x; then |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
975 |
AC_MSG_ERROR([The specified make (by MAKE=$MAKE) is not GNU make $MAKE_REQUIRED_VERSION or newer.]) |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
976 |
fi |
19196d07fa98
8140591: Add configure argument specifying make executable in JPRT
erikj
parents:
33052
diff
changeset
|
977 |
]) |
13697 | 978 |
|
979 |
MAKE=$FOUND_MAKE |
|
980 |
AC_SUBST(MAKE) |
|
29865
60e4eefce6e4
8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0
erikj
parents:
29848
diff
changeset
|
981 |
AC_MSG_NOTICE([Using GNU make at $FOUND_MAKE (version: $MAKE_VERSION_STRING)]) |
25854 | 982 |
|
983 |
BASIC_CHECK_MAKE_OUTPUT_SYNC |
|
13697 | 984 |
]) |
985 |
||
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
986 |
AC_DEFUN([BASIC_CHECK_FIND_DELETE], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
987 |
[ |
20363 | 988 |
# Test if find supports -delete |
989 |
AC_MSG_CHECKING([if find supports -delete]) |
|
990 |
FIND_DELETE="-delete" |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
991 |
|
20363 | 992 |
DELETEDIR=`$MKTEMP -d tmp.XXXXXXXXXX` || (echo Could not create temporary directory!; exit $?) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
993 |
|
20363 | 994 |
echo Hejsan > $DELETEDIR/TestIfFindSupportsDelete |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
995 |
|
20363 | 996 |
TEST_DELETE=`$FIND "$DELETEDIR" -name TestIfFindSupportsDelete $FIND_DELETE 2>&1` |
997 |
if test -f $DELETEDIR/TestIfFindSupportsDelete; then |
|
998 |
# No, it does not. |
|
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
999 |
$RM $DELETEDIR/TestIfFindSupportsDelete |
26130
2ea1262921e0
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
25882
diff
changeset
|
1000 |
if test "x$OPENJDK_TARGET_OS" = "xaix"; then |
2ea1262921e0
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
25882
diff
changeset
|
1001 |
# AIX 'find' is buggy if called with '-exec {} \+' and an empty file list |
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1002 |
FIND_DELETE="-print | $XARGS $RM" |
26130
2ea1262921e0
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
25882
diff
changeset
|
1003 |
else |
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1004 |
FIND_DELETE="-exec $RM \{\} \+" |
26130
2ea1262921e0
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
25882
diff
changeset
|
1005 |
fi |
20363 | 1006 |
AC_MSG_RESULT([no]) |
1007 |
else |
|
1008 |
AC_MSG_RESULT([yes]) |
|
1009 |
fi |
|
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1010 |
$RMDIR $DELETEDIR |
20363 | 1011 |
AC_SUBST(FIND_DELETE) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1012 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1013 |
|
37972 | 1014 |
AC_DEFUN([BASIC_CHECK_TAR], |
1015 |
[ |
|
1016 |
# Test which kind of tar was found |
|
1017 |
if test "x$($TAR --version | $GREP "GNU tar")" != "x"; then |
|
1018 |
TAR_TYPE="gnu" |
|
43046
717ce6d4eaa1
8171409: Create a smoother configure experience on macosx
ihse
parents:
42136
diff
changeset
|
1019 |
elif test "x$($TAR --version | $GREP "bsdtar")" != "x"; then |
717ce6d4eaa1
8171409: Create a smoother configure experience on macosx
ihse
parents:
42136
diff
changeset
|
1020 |
TAR_TYPE="bsd" |
37972 | 1021 |
elif test "x$($TAR -v | $GREP "bsdtar")" != "x"; then |
1022 |
TAR_TYPE="bsd" |
|
1023 |
elif test "x$OPENJDK_BUILD_OS" = "xsolaris"; then |
|
1024 |
TAR_TYPE="solaris" |
|
1025 |
fi |
|
1026 |
AC_MSG_CHECKING([what type of tar was found]) |
|
1027 |
AC_MSG_RESULT([$TAR_TYPE]) |
|
1028 |
||
38924
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1029 |
TAR_CREATE_FILE_PARAM="" |
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1030 |
|
37972 | 1031 |
if test "x$TAR_TYPE" = "xgnu"; then |
1032 |
TAR_INCLUDE_PARAM="T" |
|
1033 |
TAR_SUPPORTS_TRANSFORM="true" |
|
38924
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1034 |
if test "x$OPENJDK_TARGET_OS" = "xsolaris"; then |
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1035 |
# When using gnu tar for Solaris targets, need to use compatibility mode |
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1036 |
TAR_CREATE_EXTRA_PARAM="--format=ustar" |
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1037 |
fi |
37972 | 1038 |
else |
1039 |
TAR_INCLUDE_PARAM="I" |
|
1040 |
TAR_SUPPORTS_TRANSFORM="false" |
|
1041 |
fi |
|
38924
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1042 |
AC_SUBST(TAR_TYPE) |
55921b080a8e
8157479: jdk-9_solaris-x64_bin-debug.tar.gz error - typeflag 'L' not recognized
erikj
parents:
37972
diff
changeset
|
1043 |
AC_SUBST(TAR_CREATE_EXTRA_PARAM) |
37972 | 1044 |
AC_SUBST(TAR_INCLUDE_PARAM) |
1045 |
AC_SUBST(TAR_SUPPORTS_TRANSFORM) |
|
1046 |
]) |
|
1047 |
||
43050
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1048 |
AC_DEFUN([BASIC_CHECK_GREP], |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1049 |
[ |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1050 |
# Test that grep supports -Fx with a list of pattern which includes null pattern. |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1051 |
# This is a problem for the grep resident on AIX. |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1052 |
AC_MSG_CHECKING([that grep ($GREP) -Fx handles empty lines in the pattern list correctly]) |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1053 |
# Multiple subsequent spaces.. |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1054 |
STACK_SPACES='aaa bbb ccc' |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1055 |
# ..converted to subsequent newlines, causes STACK_LIST to be a list with some empty |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1056 |
# patterns in it. |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1057 |
STACK_LIST=${STACK_SPACES// /$'\n'} |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1058 |
NEEDLE_SPACES='ccc bbb aaa' |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1059 |
NEEDLE_LIST=${NEEDLE_SPACES// /$'\n'} |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1060 |
RESULT="$($GREP -Fvx "$STACK_LIST" <<< "$NEEDLE_LIST")" |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1061 |
if test "x$RESULT" == "x"; then |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1062 |
AC_MSG_RESULT([yes]) |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1063 |
else |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1064 |
if test "x$OPENJDK_TARGET_OS" = "xaix"; then |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1065 |
ADDINFO="Please make sure you use GNU grep, usually found at /opt/freeware/bin." |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1066 |
fi |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1067 |
AC_MSG_ERROR([grep does not handle -Fx correctly. ${ADDINFO}]) |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1068 |
fi |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1069 |
]) |
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1070 |
|
14111 | 1071 |
AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS], |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1072 |
[ |
20363 | 1073 |
BASIC_CHECK_GNU_MAKE |
13697 | 1074 |
|
20363 | 1075 |
BASIC_CHECK_FIND_DELETE |
37972 | 1076 |
BASIC_CHECK_TAR |
43050
318848ed8345
8172712: configure should check that grep handles empty pattern correctly
stuefe
parents:
43046
diff
changeset
|
1077 |
BASIC_CHECK_GREP |
13697 | 1078 |
|
20363 | 1079 |
# These tools might not be installed by default, |
1080 |
# need hint on how to install them. |
|
22475 | 1081 |
BASIC_REQUIRE_PROGS(UNZIP, unzip) |
42136
f872c8278074
8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents:
41462
diff
changeset
|
1082 |
# Since zip uses "ZIP" as a environment variable for passing options, we need |
f872c8278074
8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents:
41462
diff
changeset
|
1083 |
# to name our variable differently, hence ZIPEXE. |
f872c8278074
8168037: Use ZIPEXE instead of ZIP to avoid clash with options for zip
ihse
parents:
41462
diff
changeset
|
1084 |
BASIC_REQUIRE_PROGS(ZIPEXE, zip) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1085 |
|
20363 | 1086 |
# Non-required basic tools |
13697 | 1087 |
|
22475 | 1088 |
BASIC_PATH_PROGS(LDD, ldd) |
20363 | 1089 |
if test "x$LDD" = "x"; then |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1090 |
# List shared lib dependencies is used for |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1091 |
# debug output and checking for forbidden dependencies. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1092 |
# We can build without it. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1093 |
LDD="true" |
20363 | 1094 |
fi |
22475 | 1095 |
BASIC_PATH_PROGS(OTOOL, otool) |
20363 | 1096 |
if test "x$OTOOL" = "x"; then |
1097 |
OTOOL="true" |
|
1098 |
fi |
|
22475 | 1099 |
BASIC_PATH_PROGS(READELF, [greadelf readelf]) |
44727 | 1100 |
BASIC_PATH_PROGS(DOT, dot) |
22475 | 1101 |
BASIC_PATH_PROGS(HG, hg) |
1102 |
BASIC_PATH_PROGS(STAT, stat) |
|
1103 |
BASIC_PATH_PROGS(TIME, time) |
|
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44078
diff
changeset
|
1104 |
BASIC_PATH_PROGS(FLOCK, flock) |
41462
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
1105 |
# Dtrace is usually found in /usr/sbin on Solaris, but that directory may not |
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
1106 |
# be in the user path. |
a4f7ec34a58f
8166937: [Solaris] Missing libjvm_db.so and libjvm_dtrace.so from JDK 9 b138
erikj
parents:
41040
diff
changeset
|
1107 |
BASIC_PATH_PROGS(DTRACE, dtrace, $PATH:/usr/sbin) |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
31123
diff
changeset
|
1108 |
BASIC_PATH_PROGS(PATCH, [gpatch patch]) |
20363 | 1109 |
# Check if it's GNU time |
1110 |
IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'` |
|
1111 |
if test "x$IS_GNU_TIME" != x; then |
|
1112 |
IS_GNU_TIME=yes |
|
1113 |
else |
|
1114 |
IS_GNU_TIME=no |
|
1115 |
fi |
|
1116 |
AC_SUBST(IS_GNU_TIME) |
|
14111 | 1117 |
|
20363 | 1118 |
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then |
22475 | 1119 |
BASIC_REQUIRE_PROGS(DSYMUTIL, dsymutil) |
1120 |
BASIC_REQUIRE_PROGS(XATTR, xattr) |
|
1121 |
BASIC_PATH_PROGS(CODESIGN, codesign) |
|
20363 | 1122 |
if test "x$CODESIGN" != "x"; then |
1123 |
# Verify that the openjdk_codesign certificate is present |
|
1124 |
AC_MSG_CHECKING([if openjdk_codesign certificate is present]) |
|
38843
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1125 |
$RM codesign-testfile |
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1126 |
$TOUCH codesign-testfile |
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1127 |
$CODESIGN -s openjdk_codesign codesign-testfile 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD || CODESIGN= |
2b141e8e916f
8158535: Configure script uses basic tools directly in many places
erikj
parents:
37972
diff
changeset
|
1128 |
$RM codesign-testfile |
20363 | 1129 |
if test "x$CODESIGN" = x; then |
1130 |
AC_MSG_RESULT([no]) |
|
1131 |
else |
|
1132 |
AC_MSG_RESULT([yes]) |
|
1133 |
fi |
|
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17593
diff
changeset
|
1134 |
fi |
31123 | 1135 |
BASIC_REQUIRE_PROGS(SETFILE, SetFile) |
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17593
diff
changeset
|
1136 |
fi |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1137 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1138 |
|
14111 | 1139 |
# Check if build directory is on local disk. If not possible to determine, |
1140 |
# we prefer to claim it's local. |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1141 |
# Argument 1: directory to test |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1142 |
# Argument 2: what to do if it is on local disk |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1143 |
# Argument 3: what to do otherwise (remote disk or failure) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1144 |
AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1145 |
[ |
20363 | 1146 |
# df -l lists only local disks; if the given directory is not found then |
1147 |
# a non-zero exit code is given |
|
14111 | 1148 |
if test "x$DF" = x; then |
1149 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then |
|
1150 |
# msys does not have df; use Windows "net use" instead. |
|
1151 |
IS_NETWORK_DISK=`net use | grep \`pwd -W | cut -d ":" -f 1 | tr a-z A-Z\`:` |
|
1152 |
if test "x$IS_NETWORK_DISK" = x; then |
|
1153 |
$2 |
|
1154 |
else |
|
1155 |
$3 |
|
1156 |
fi |
|
1157 |
else |
|
1158 |
# No df here, say it's local |
|
1159 |
$2 |
|
1160 |
fi |
|
1161 |
else |
|
47397
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1162 |
# JDK-8189619 |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1163 |
# df on AIX does not understand -l. On modern AIXes it understands "-T local" which |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1164 |
# is the same. On older AIXes we just continue to live with a "not local build" warning. |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1165 |
if test "x$OPENJDK_TARGET_OS" = xaix; then |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1166 |
DF_LOCAL_ONLY_OPTION='-T local' |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1167 |
else |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1168 |
DF_LOCAL_ONLY_OPTION='-l' |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1169 |
fi |
7236260e166c
8189619: [aix] OpenJDK local disk check not working on AIX
stuefe
parents:
47346
diff
changeset
|
1170 |
if $DF $DF_LOCAL_ONLY_OPTION $1 > /dev/null 2>&1; then |
14111 | 1171 |
$2 |
1172 |
else |
|
1173 |
$3 |
|
1174 |
fi |
|
1175 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1176 |
]) |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1177 |
|
15050
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1178 |
# Check that source files have basic read permissions set. This might |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1179 |
# not be the case in cygwin in certain conditions. |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1180 |
AC_DEFUN_ONCE([BASIC_CHECK_SRC_PERMS], |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1181 |
[ |
25882 | 1182 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then |
47252 | 1183 |
file_to_test="$TOPDIR/LICENSE" |
15050
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1184 |
if test `$STAT -c '%a' "$file_to_test"` -lt 400; then |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1185 |
AC_MSG_ERROR([Bad file permissions on src files. This is usually caused by cloning the repositories with a non cygwin hg in a directory not created in cygwin.]) |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1186 |
fi |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1187 |
fi |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1188 |
]) |
98a901883580
8001942: build-infra: General permission problems on Windows/cygwin
erikj
parents:
14736
diff
changeset
|
1189 |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1190 |
AC_DEFUN_ONCE([BASIC_TEST_USABILITY_ISSUES], |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1191 |
[ |
22475 | 1192 |
# Did user specify any unknown variables? |
1193 |
BASIC_CHECK_LEFTOVER_OVERRIDDEN |
|
1194 |
||
20363 | 1195 |
AC_MSG_CHECKING([if build directory is on local disk]) |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1196 |
BASIC_CHECK_DIR_ON_LOCAL_DISK($OUTPUTDIR, |
20363 | 1197 |
[OUTPUT_DIR_IS_LOCAL="yes"], |
1198 |
[OUTPUT_DIR_IS_LOCAL="no"]) |
|
1199 |
AC_MSG_RESULT($OUTPUT_DIR_IS_LOCAL) |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1200 |
|
20363 | 1201 |
BASIC_CHECK_SRC_PERMS |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1202 |
|
20363 | 1203 |
# Check if the user has any old-style ALT_ variables set. |
1204 |
FOUND_ALT_VARIABLES=`env | grep ^ALT_` |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1205 |
|
20363 | 1206 |
# Before generating output files, test if they exist. If they do, this is a reconfigure. |
1207 |
# Since we can't properly handle the dependencies for this, warn the user about the situation |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1208 |
if test -e $OUTPUTDIR/spec.gmk; then |
20363 | 1209 |
IS_RECONFIGURE=yes |
1210 |
else |
|
1211 |
IS_RECONFIGURE=no |
|
1212 |
fi |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1213 |
]) |
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1214 |
|
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1215 |
# Check for support for specific options in bash |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1216 |
AC_DEFUN_ONCE([BASIC_CHECK_BASH_OPTIONS], |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1217 |
[ |
43654 | 1218 |
# Check bash version |
1219 |
# Extra [ ] to stop m4 mangling |
|
1220 |
[ BASH_VER=`$BASH --version | $SED -n -e 's/^.*bash.*ersion *\([0-9.]*\).*$/\1/ p'` ] |
|
1221 |
AC_MSG_CHECKING([bash version]) |
|
1222 |
AC_MSG_RESULT([$BASH_VER]) |
|
1223 |
||
1224 |
BASH_MAJOR=`$ECHO $BASH_VER | $CUT -d . -f 1` |
|
1225 |
BASH_MINOR=`$ECHO $BASH_VER | $CUT -d . -f 2` |
|
1226 |
if test $BASH_MAJOR -lt 3 || (test $BASH_MAJOR -eq 3 && test $BASH_MINOR -lt 2); then |
|
1227 |
AC_MSG_ERROR([bash version 3.2 or better is required]) |
|
1228 |
fi |
|
1229 |
||
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1230 |
# Test if bash supports pipefail. |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1231 |
AC_MSG_CHECKING([if bash supports pipefail]) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1232 |
if ${BASH} -c 'set -o pipefail'; then |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1233 |
BASH_ARGS="$BASH_ARGS -o pipefail" |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1234 |
AC_MSG_RESULT([yes]) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1235 |
else |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1236 |
AC_MSG_RESULT([no]) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1237 |
fi |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1238 |
|
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1239 |
AC_MSG_CHECKING([if bash supports errexit (-e)]) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1240 |
if ${BASH} -e -c 'true'; then |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1241 |
BASH_ARGS="$BASH_ARGS -e" |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1242 |
AC_MSG_RESULT([yes]) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1243 |
else |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1244 |
AC_MSG_RESULT([no]) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1245 |
fi |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1246 |
|
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1247 |
AC_SUBST(BASH_ARGS) |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
1248 |
]) |
30417
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1249 |
|
34491 | 1250 |
################################################################################ |
1251 |
# |
|
1252 |
# Default make target |
|
1253 |
# |
|
1254 |
AC_DEFUN_ONCE([BASIC_SETUP_DEFAULT_MAKE_TARGET], |
|
1255 |
[ |
|
1256 |
AC_ARG_WITH(default-make-target, [AS_HELP_STRING([--with-default-make-target], |
|
1257 |
[set the default make target @<:@exploded-image@:>@])]) |
|
1258 |
if test "x$with_default_make_target" = "x" \ |
|
1259 |
|| test "x$with_default_make_target" = "xyes"; then |
|
1260 |
DEFAULT_MAKE_TARGET="exploded-image" |
|
1261 |
elif test "x$with_default_make_target" = "xno"; then |
|
1262 |
AC_MSG_ERROR([--without-default-make-target is not a valid option]) |
|
1263 |
else |
|
1264 |
DEFAULT_MAKE_TARGET="$with_default_make_target" |
|
1265 |
fi |
|
1266 |
||
1267 |
AC_SUBST(DEFAULT_MAKE_TARGET) |
|
1268 |
]) |
|
1269 |
||
30417
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1270 |
# Code to run after AC_OUTPUT |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1271 |
AC_DEFUN_ONCE([BASIC_POST_CONFIG_OUTPUT], |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1272 |
[ |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1273 |
# Try to move config.log (generated by autoconf) to the configure-support directory. |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1274 |
if test -e ./config.log; then |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1275 |
$MV -f ./config.log "$CONFIGURESUPPORT_OUTPUTDIR/config.log" 2> /dev/null |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1276 |
fi |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1277 |
|
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1278 |
# Rotate our log file (configure.log) |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1279 |
if test -e "$OUTPUTDIR/configure.log.old"; then |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1280 |
$RM -f "$OUTPUTDIR/configure.log.old" |
30417
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1281 |
fi |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1282 |
if test -e "$OUTPUTDIR/configure.log"; then |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1283 |
$MV -f "$OUTPUTDIR/configure.log" "$OUTPUTDIR/configure.log.old" 2> /dev/null |
30417
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1284 |
fi |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1285 |
|
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1286 |
# Move configure.log from current directory to the build output root |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1287 |
if test -e ./configure.log; then |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1288 |
$MV -f ./configure.log "$OUTPUTDIR/configure.log" 2> /dev/null |
30417
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1289 |
fi |
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1290 |
|
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1291 |
# Make the compare script executable |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47252
diff
changeset
|
1292 |
$CHMOD +x $OUTPUTDIR/compare.sh |
30417
581a2762eef1
8079891: Store configure log in $BUILD/configure.log
ihse
parents:
30022
diff
changeset
|
1293 |
]) |