common/autoconf/basics.m4

Mon, 21 May 2018 06:54:25 -0700

author
kevinw
date
Mon, 21 May 2018 06:54:25 -0700
changeset 2224
20daa32eec6f
parent 2219
cb1203f48728
child 2228
1a5c98aae346
permissions
-rw-r--r--

8078437: Enable use of devkits for Windows
Reviewed-by: erikj, ihse

erikj@459 1 #
kevinw@2206 2 # Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
erikj@459 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
erikj@459 4 #
erikj@459 5 # This code is free software; you can redistribute it and/or modify it
erikj@459 6 # under the terms of the GNU General Public License version 2 only, as
erikj@459 7 # published by the Free Software Foundation. Oracle designates this
erikj@459 8 # particular file as subject to the "Classpath" exception as provided
erikj@459 9 # by Oracle in the LICENSE file that accompanied this code.
erikj@459 10 #
erikj@459 11 # This code is distributed in the hope that it will be useful, but WITHOUT
erikj@459 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
erikj@459 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
erikj@459 14 # version 2 for more details (a copy is included in the LICENSE file that
erikj@459 15 # accompanied this code).
erikj@459 16 #
erikj@459 17 # You should have received a copy of the GNU General Public License version
erikj@459 18 # 2 along with this work; if not, write to the Free Software Foundation,
erikj@459 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
erikj@459 20 #
erikj@459 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
erikj@459 22 # or visit www.oracle.com if you need additional information or have any
erikj@459 23 # questions.
erikj@459 24 #
erikj@459 25
erikj@717 26 # Test if $1 is a valid argument to $3 (often is $JAVA passed as $3)
ihse@839 27 # If so, then append $1 to $2 \
erikj@717 28 # Also set JVM_ARG_OK to true/false depending on outcome.
erikj@459 29 AC_DEFUN([ADD_JVM_ARG_IF_OK],
erikj@459 30 [
ihse@839 31 $ECHO "Check if jvm arg is ok: $1" >&AS_MESSAGE_LOG_FD
ihse@839 32 $ECHO "Command: $3 $1 -version" >&AS_MESSAGE_LOG_FD
ihse@839 33 OUTPUT=`$3 $1 -version 2>&1`
ihse@839 34 FOUND_WARN=`$ECHO "$OUTPUT" | grep -i warn`
ihse@839 35 FOUND_VERSION=`$ECHO $OUTPUT | grep " version \""`
ihse@839 36 if test "x$FOUND_VERSION" != x && test "x$FOUND_WARN" = x; then
ihse@839 37 $2="[$]$2 $1"
ihse@839 38 JVM_ARG_OK=true
ihse@839 39 else
ihse@839 40 $ECHO "Arg failed:" >&AS_MESSAGE_LOG_FD
ihse@839 41 $ECHO "$OUTPUT" >&AS_MESSAGE_LOG_FD
ihse@839 42 JVM_ARG_OK=false
ihse@839 43 fi
erikj@459 44 ])
erikj@459 45
erikj@750 46 # Appends a string to a path variable, only adding the : when needed.
erikj@750 47 AC_DEFUN([BASIC_APPEND_TO_PATH],
erikj@750 48 [
kevinw@2215 49 if test "x$2" != x; then
kevinw@2215 50 if test "x[$]$1" = x; then
kevinw@2215 51 $1="$2"
kevinw@2215 52 else
kevinw@2215 53 $1="[$]$1:$2"
kevinw@2215 54 fi
kevinw@2215 55 fi
kevinw@2215 56 ])
kevinw@2215 57
kevinw@2215 58 # Prepends a string to a path variable, only adding the : when needed.
kevinw@2215 59 AC_DEFUN([BASIC_PREPEND_TO_PATH],
kevinw@2215 60 [
kevinw@2215 61 if test "x$2" != x; then
kevinw@2215 62 if test "x[$]$1" = x; then
kevinw@2215 63 $1="$2"
kevinw@2215 64 else
kevinw@2215 65 $1="$2:[$]$1"
kevinw@2215 66 fi
erikj@750 67 fi
erikj@750 68 ])
erikj@750 69
ohair@494 70 # This will make sure the given variable points to a full and proper
ohair@494 71 # path. This means:
ohair@494 72 # 1) There will be no spaces in the path. On posix platforms,
ohair@494 73 # spaces in the path will result in an error. On Windows,
ohair@494 74 # the path will be rewritten using short-style to be space-free.
ohair@494 75 # 2) The path will be absolute, and it will be in unix-style (on
ohair@494 76 # cygwin).
ohair@494 77 # $1: The name of the variable to fix
ohair@494 78 AC_DEFUN([BASIC_FIXUP_PATH],
erikj@459 79 [
ohair@494 80 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
ohair@494 81 BASIC_FIXUP_PATH_CYGWIN($1)
ohair@494 82 elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
ohair@494 83 BASIC_FIXUP_PATH_MSYS($1)
ohair@494 84 else
ohair@494 85 # We're on a posix platform. Hooray! :)
ohair@494 86 path="[$]$1"
ohair@494 87 has_space=`$ECHO "$path" | $GREP " "`
ohair@494 88 if test "x$has_space" != x; then
ohair@494 89 AC_MSG_NOTICE([The path of $1, which resolves as "$path", is invalid.])
ohair@494 90 AC_MSG_ERROR([Spaces are not allowed in this path.])
erikj@459 91 fi
erikj@718 92
erikj@718 93 # Use eval to expand a potential ~
erikj@718 94 eval path="$path"
erikj@718 95 if test ! -f "$path" && test ! -d "$path"; then
erikj@718 96 AC_MSG_ERROR([The path of $1, which resolves as "$path", is not found.])
erikj@718 97 fi
erikj@718 98
ihse@839 99 $1="`cd "$path"; $THEPWDCMD -L`"
ohair@494 100 fi
erikj@459 101 ])
erikj@459 102
ohair@494 103 # This will make sure the given variable points to a executable
ohair@494 104 # with a full and proper path. This means:
ohair@494 105 # 1) There will be no spaces in the path. On posix platforms,
ohair@494 106 # spaces in the path will result in an error. On Windows,
ohair@494 107 # the path will be rewritten using short-style to be space-free.
ohair@494 108 # 2) The path will be absolute, and it will be in unix-style (on
ohair@494 109 # cygwin).
ohair@494 110 # Any arguments given to the executable is preserved.
ohair@494 111 # If the input variable does not have a directory specification, then
ohair@494 112 # it need to be in the PATH.
ohair@494 113 # $1: The name of the variable to fix
ohair@494 114 AC_DEFUN([BASIC_FIXUP_EXECUTABLE],
erikj@459 115 [
ohair@494 116 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
ohair@494 117 BASIC_FIXUP_EXECUTABLE_CYGWIN($1)
ohair@494 118 elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
ohair@494 119 BASIC_FIXUP_EXECUTABLE_MSYS($1)
ohair@494 120 else
ohair@494 121 # We're on a posix platform. Hooray! :)
ohair@494 122 # First separate the path from the arguments. This will split at the first
ohair@494 123 # space.
ohair@494 124 complete="[$]$1"
ohair@494 125 path="${complete%% *}"
ohair@494 126 tmp="$complete EOL"
ohair@494 127 arguments="${tmp#* }"
ohair@494 128
erikj@539 129 # Cannot rely on the command "which" here since it doesn't always work.
erikj@539 130 is_absolute_path=`$ECHO "$path" | $GREP ^/`
erikj@539 131 if test -z "$is_absolute_path"; then
erikj@539 132 # Path to executable is not absolute. Find it.
erikj@539 133 IFS_save="$IFS"
erikj@539 134 IFS=:
erikj@539 135 for p in $PATH; do
erikj@539 136 if test -f "$p/$path" && test -x "$p/$path"; then
erikj@539 137 new_path="$p/$path"
erikj@539 138 break
erikj@539 139 fi
erikj@539 140 done
erikj@539 141 IFS="$IFS_save"
erikj@539 142 else
kevinw@2206 143 # This is an absolute path, we can use it without further modifications.
erikj@539 144 new_path="$path"
erikj@539 145 fi
ihse@839 146
ohair@494 147 if test "x$new_path" = x; then
ihse@839 148 AC_MSG_NOTICE([The path of $1, which resolves as "$complete", is not found.])
ihse@839 149 has_space=`$ECHO "$complete" | $GREP " "`
ihse@839 150 if test "x$has_space" != x; then
ihse@839 151 AC_MSG_NOTICE([This might be caused by spaces in the path, which is not allowed.])
ohair@494 152 fi
ihse@839 153 AC_MSG_ERROR([Cannot locate the the path of $1])
ihse@839 154 fi
ohair@494 155 fi
ohair@494 156
ihse@839 157 # Now join together the path and the arguments once again
ihse@839 158 if test "x$arguments" != xEOL; then
ihse@839 159 new_complete="$new_path ${arguments% *}"
ihse@839 160 else
ihse@839 161 new_complete="$new_path"
ihse@839 162 fi
ohair@494 163
ohair@494 164 if test "x$complete" != "x$new_complete"; then
ihse@839 165 $1="$new_complete"
ihse@839 166 AC_MSG_NOTICE([Rewriting $1 to "$new_complete"])
ihse@839 167 fi
erikj@459 168 ])
erikj@459 169
ohair@494 170 AC_DEFUN([BASIC_REMOVE_SYMBOLIC_LINKS],
erikj@459 171 [
ihse@839 172 if test "x$OPENJDK_BUILD_OS" != xwindows; then
ihse@839 173 # Follow a chain of symbolic links. Use readlink
ihse@839 174 # where it exists, else fall back to horribly
ihse@839 175 # complicated shell code.
ihse@839 176 if test "x$READLINK_TESTED" != yes; then
ihse@839 177 # On MacOSX there is a readlink tool with a different
ihse@839 178 # purpose than the GNU readlink tool. Check the found readlink.
ihse@839 179 ISGNU=`$READLINK --version 2>&1 | $GREP GNU`
ihse@839 180 if test "x$ISGNU" = x; then
ihse@839 181 # A readlink that we do not know how to use.
ihse@839 182 # Are there other non-GNU readlinks out there?
ihse@839 183 READLINK_TESTED=yes
ihse@839 184 READLINK=
ihse@839 185 fi
ihse@839 186 fi
ihse@839 187
ihse@839 188 if test "x$READLINK" != x; then
ihse@839 189 $1=`$READLINK -f [$]$1`
ihse@839 190 else
ihse@839 191 # Save the current directory for restoring afterwards
ihse@839 192 STARTDIR=$PWD
ihse@839 193 COUNTER=0
ihse@839 194 sym_link_dir=`$DIRNAME [$]$1`
ihse@839 195 sym_link_file=`$BASENAME [$]$1`
ihse@839 196 cd $sym_link_dir
ihse@839 197 # Use -P flag to resolve symlinks in directories.
ihse@839 198 cd `$THEPWDCMD -P`
ihse@839 199 sym_link_dir=`$THEPWDCMD -P`
ihse@839 200 # Resolve file symlinks
ihse@839 201 while test $COUNTER -lt 20; do
ihse@839 202 ISLINK=`$LS -l $sym_link_dir/$sym_link_file | $GREP '\->' | $SED -e 's/.*-> \(.*\)/\1/'`
ihse@839 203 if test "x$ISLINK" == x; then
ihse@839 204 # This is not a symbolic link! We are done!
ihse@839 205 break
erikj@459 206 fi
ihse@839 207 # Again resolve directory symlinks since the target of the just found
ihse@839 208 # link could be in a different directory
ihse@839 209 cd `$DIRNAME $ISLINK`
ihse@839 210 sym_link_dir=`$THEPWDCMD -P`
ihse@839 211 sym_link_file=`$BASENAME $ISLINK`
ihse@839 212 let COUNTER=COUNTER+1
ihse@839 213 done
ihse@839 214 cd $STARTDIR
ihse@839 215 $1=$sym_link_dir/$sym_link_file
erikj@459 216 fi
ihse@839 217 fi
erikj@459 218 ])
erikj@459 219
ihse@801 220 # Register a --with argument but mark it as deprecated
ihse@801 221 # $1: The name of the with argument to deprecate, not including --with-
ihse@801 222 AC_DEFUN([BASIC_DEPRECATED_ARG_WITH],
ihse@801 223 [
ihse@801 224 AC_ARG_WITH($1, [AS_HELP_STRING([--with-$1],
ihse@801 225 [Deprecated. Option is kept for backwards compatibility and is ignored])],
ihse@801 226 [AC_MSG_WARN([Option --with-$1 is deprecated and will be ignored.])])
ihse@801 227 ])
ihse@801 228
ihse@863 229 # Register a --enable argument but mark it as deprecated
ihse@863 230 # $1: The name of the with argument to deprecate, not including --enable-
ihse@863 231 # $2: The name of the argument to deprecate, in shell variable style (i.e. with _ instead of -)
ihse@863 232 AC_DEFUN([BASIC_DEPRECATED_ARG_ENABLE],
ihse@863 233 [
ihse@863 234 AC_ARG_ENABLE($1, [AS_HELP_STRING([--enable-$1],
ihse@863 235 [Deprecated. Option is kept for backwards compatibility and is ignored])])
ihse@863 236 if test "x$enable_$2" != x; then
ihse@863 237 AC_MSG_WARN([Option --enable-$1 is deprecated and will be ignored.])
ihse@863 238 fi
ihse@863 239 ])
ihse@863 240
erikj@459 241 AC_DEFUN_ONCE([BASIC_INIT],
erikj@459 242 [
ihse@839 243 # Save the original command line. This is passed to us by the wrapper configure script.
ihse@839 244 AC_SUBST(CONFIGURE_COMMAND_LINE)
ihse@839 245 DATE_WHEN_CONFIGURED=`LANG=C date`
ihse@839 246 AC_SUBST(DATE_WHEN_CONFIGURED)
ihse@839 247 AC_MSG_NOTICE([Configuration created at $DATE_WHEN_CONFIGURED.])
ihse@839 248 AC_MSG_NOTICE([configure script generated at timestamp $DATE_WHEN_GENERATED.])
ohair@494 249 ])
ohair@494 250
ohair@494 251 # Test that variable $1 denoting a program is not empty. If empty, exit with an error.
ohair@494 252 # $1: variable to check
ohair@494 253 AC_DEFUN([BASIC_CHECK_NONEMPTY],
ohair@494 254 [
ihse@839 255 if test "x[$]$1" = x; then
kevinw@2204 256 AC_MSG_ERROR([Could not find required tool for $1])
ihse@839 257 fi
ohair@494 258 ])
ohair@494 259
kevinw@2204 260 # Check that there are no unprocessed overridden variables left.
kevinw@2204 261 # If so, they are an incorrect argument and we will exit with an error.
kevinw@2204 262 AC_DEFUN([BASIC_CHECK_LEFTOVER_OVERRIDDEN],
kevinw@2204 263 [
kevinw@2204 264 if test "x$CONFIGURE_OVERRIDDEN_VARIABLES" != x; then
kevinw@2204 265 # Replace the separating ! with spaces before presenting for end user.
kevinw@2204 266 unknown_variables=${CONFIGURE_OVERRIDDEN_VARIABLES//!/ }
kevinw@2205 267 AC_MSG_WARN([The following variables might be unknown to configure: $unknown_variables])
kevinw@2204 268 fi
kevinw@2204 269 ])
kevinw@2204 270
kevinw@2204 271 # Setup a tool for the given variable. If correctly specified by the user,
kevinw@2204 272 # use that value, otherwise search for the tool using the supplied code snippet.
ohair@494 273 # $1: variable to set
kevinw@2204 274 # $2: code snippet to call to look for the tool
kevinw@2204 275 AC_DEFUN([BASIC_SETUP_TOOL],
ohair@494 276 [
kevinw@2204 277 # Publish this variable in the help.
kevinw@2204 278 AC_ARG_VAR($1, [Override default value for $1])
kevinw@2204 279
kevinw@2204 280 if test "x[$]$1" = x; then
kevinw@2204 281 # The variable is not set by user, try to locate tool using the code snippet
kevinw@2204 282 $2
kevinw@2204 283 else
kevinw@2204 284 # The variable is set, but is it from the command line or the environment?
kevinw@2204 285
kevinw@2204 286 # Try to remove the string !$1! from our list.
kevinw@2204 287 try_remove_var=${CONFIGURE_OVERRIDDEN_VARIABLES//!$1!/}
kevinw@2204 288 if test "x$try_remove_var" = "x$CONFIGURE_OVERRIDDEN_VARIABLES"; then
kevinw@2204 289 # If it failed, the variable was not from the command line. Ignore it,
kevinw@2204 290 # but warn the user (except for BASH, which is always set by the calling BASH).
kevinw@2204 291 if test "x$1" != xBASH; then
kevinw@2204 292 AC_MSG_WARN([Ignoring value of $1 from the environment. Use command line variables instead.])
kevinw@2204 293 fi
kevinw@2204 294 # Try to locate tool using the code snippet
kevinw@2204 295 $2
kevinw@2204 296 else
kevinw@2204 297 # If it succeeded, then it was overridden by the user. We will use it
kevinw@2204 298 # for the tool.
kevinw@2204 299
kevinw@2204 300 # First remove it from the list of overridden variables, so we can test
kevinw@2204 301 # for unknown variables in the end.
kevinw@2204 302 CONFIGURE_OVERRIDDEN_VARIABLES="$try_remove_var"
kevinw@2204 303
kevinw@2204 304 # Check if the provided tool contains a complete path.
kevinw@2204 305 tool_specified="[$]$1"
kevinw@2204 306 tool_basename="${tool_specified##*/}"
kevinw@2204 307 if test "x$tool_basename" = "x$tool_specified"; then
kevinw@2204 308 # A command without a complete path is provided, search $PATH.
kevinw@2204 309 AC_MSG_NOTICE([Will search for user supplied tool $1=$tool_basename])
kevinw@2204 310 AC_PATH_PROG($1, $tool_basename)
kevinw@2204 311 if test "x[$]$1" = x; then
kevinw@2204 312 AC_MSG_ERROR([User supplied tool $tool_basename could not be found])
kevinw@2204 313 fi
kevinw@2204 314 else
kevinw@2204 315 # Otherwise we believe it is a complete path. Use it as it is.
kevinw@2204 316 AC_MSG_NOTICE([Will use user supplied tool $1=$tool_specified])
kevinw@2204 317 AC_MSG_CHECKING([for $1])
kevinw@2204 318 if test ! -x "$tool_specified"; then
kevinw@2204 319 AC_MSG_RESULT([not found])
kevinw@2204 320 AC_MSG_ERROR([User supplied tool $1=$tool_specified does not exist or is not executable])
kevinw@2204 321 fi
kevinw@2204 322 AC_MSG_RESULT([$tool_specified])
kevinw@2204 323 fi
kevinw@2204 324 fi
kevinw@2204 325 fi
kevinw@2204 326 ])
kevinw@2204 327
kevinw@2204 328 # Call BASIC_SETUP_TOOL with AC_PATH_PROGS to locate the tool
kevinw@2204 329 # $1: variable to set
kevinw@2204 330 # $2: executable name (or list of names) to look for
kevinw@2204 331 AC_DEFUN([BASIC_PATH_PROGS],
kevinw@2204 332 [
kevinw@2204 333 BASIC_SETUP_TOOL($1, [AC_PATH_PROGS($1, $2)])
kevinw@2204 334 ])
kevinw@2204 335
kevinw@2204 336 # Call BASIC_SETUP_TOOL with AC_CHECK_TOOLS to locate the tool
kevinw@2204 337 # $1: variable to set
kevinw@2204 338 # $2: executable name (or list of names) to look for
kevinw@2204 339 AC_DEFUN([BASIC_CHECK_TOOLS],
kevinw@2204 340 [
kevinw@2204 341 BASIC_SETUP_TOOL($1, [AC_CHECK_TOOLS($1, $2)])
kevinw@2204 342 ])
kevinw@2204 343
kevinw@2204 344 # Like BASIC_PATH_PROGS but fails if no tool was found.
kevinw@2204 345 # $1: variable to set
kevinw@2204 346 # $2: executable name (or list of names) to look for
kevinw@2204 347 AC_DEFUN([BASIC_REQUIRE_PROGS],
kevinw@2204 348 [
kevinw@2204 349 BASIC_PATH_PROGS($1, $2)
kevinw@2204 350 BASIC_CHECK_NONEMPTY($1)
kevinw@2204 351 ])
kevinw@2204 352
kevinw@2204 353 # Like BASIC_SETUP_TOOL but fails if no tool was found.
kevinw@2204 354 # $1: variable to set
kevinw@2204 355 # $2: autoconf macro to call to look for the special tool
kevinw@2204 356 AC_DEFUN([BASIC_REQUIRE_SPECIAL],
kevinw@2204 357 [
kevinw@2204 358 BASIC_SETUP_TOOL($1, [$2])
kevinw@2204 359 BASIC_CHECK_NONEMPTY($1)
ohair@494 360 ])
ohair@494 361
ohair@494 362 # Setup the most fundamental tools that relies on not much else to set up,
ohair@494 363 # but is used by much of the early bootstrap code.
ohair@494 364 AC_DEFUN_ONCE([BASIC_SETUP_FUNDAMENTAL_TOOLS],
ohair@494 365 [
ihse@839 366 # Start with tools that do not need have cross compilation support
ihse@839 367 # and can be expected to be found in the default PATH. These tools are
ihse@839 368 # used by configure. Nor are these tools expected to be found in the
ihse@839 369 # devkit from the builddeps server either, since they are
ihse@839 370 # needed to download the devkit.
ohair@494 371
ihse@839 372 # First are all the simple required tools.
kevinw@2204 373 BASIC_REQUIRE_PROGS(BASENAME, basename)
kevinw@2204 374 BASIC_REQUIRE_PROGS(BASH, bash)
kevinw@2204 375 BASIC_REQUIRE_PROGS(CAT, cat)
kevinw@2204 376 BASIC_REQUIRE_PROGS(CHMOD, chmod)
kevinw@2204 377 BASIC_REQUIRE_PROGS(CMP, cmp)
kevinw@2204 378 BASIC_REQUIRE_PROGS(COMM, comm)
kevinw@2204 379 BASIC_REQUIRE_PROGS(CP, cp)
kevinw@2204 380 BASIC_REQUIRE_PROGS(CUT, cut)
kevinw@2204 381 BASIC_REQUIRE_PROGS(DATE, date)
kevinw@2204 382 BASIC_REQUIRE_PROGS(DIFF, [gdiff diff])
kevinw@2204 383 BASIC_REQUIRE_PROGS(DIRNAME, dirname)
kevinw@2204 384 BASIC_REQUIRE_PROGS(ECHO, echo)
kevinw@2204 385 BASIC_REQUIRE_PROGS(EXPR, expr)
kevinw@2204 386 BASIC_REQUIRE_PROGS(FILE, file)
kevinw@2204 387 BASIC_REQUIRE_PROGS(FIND, find)
kevinw@2204 388 BASIC_REQUIRE_PROGS(HEAD, head)
kevinw@2204 389 BASIC_REQUIRE_PROGS(LN, ln)
kevinw@2204 390 BASIC_REQUIRE_PROGS(LS, ls)
kevinw@2204 391 BASIC_REQUIRE_PROGS(MKDIR, mkdir)
kevinw@2204 392 BASIC_REQUIRE_PROGS(MKTEMP, mktemp)
kevinw@2204 393 BASIC_REQUIRE_PROGS(MV, mv)
kevinw@2204 394 BASIC_REQUIRE_PROGS(NAWK, [nawk gawk awk])
kevinw@2204 395 BASIC_REQUIRE_PROGS(PRINTF, printf)
kevinw@2204 396 BASIC_REQUIRE_PROGS(RM, rm)
kevinw@2204 397 BASIC_REQUIRE_PROGS(SH, sh)
kevinw@2204 398 BASIC_REQUIRE_PROGS(SORT, sort)
kevinw@2204 399 BASIC_REQUIRE_PROGS(TAIL, tail)
kevinw@2204 400 BASIC_REQUIRE_PROGS(TAR, tar)
kevinw@2204 401 BASIC_REQUIRE_PROGS(TEE, tee)
kevinw@2204 402 BASIC_REQUIRE_PROGS(TOUCH, touch)
kevinw@2204 403 BASIC_REQUIRE_PROGS(TR, tr)
kevinw@2204 404 BASIC_REQUIRE_PROGS(UNAME, uname)
kevinw@2204 405 BASIC_REQUIRE_PROGS(UNIQ, uniq)
kevinw@2204 406 BASIC_REQUIRE_PROGS(WC, wc)
kevinw@2204 407 BASIC_REQUIRE_PROGS(WHICH, which)
kevinw@2204 408 BASIC_REQUIRE_PROGS(XARGS, xargs)
ohair@494 409
ihse@839 410 # Then required tools that require some special treatment.
kevinw@2204 411 BASIC_REQUIRE_SPECIAL(AWK, [AC_PROG_AWK])
kevinw@2204 412 BASIC_REQUIRE_SPECIAL(GREP, [AC_PROG_GREP])
kevinw@2204 413 BASIC_REQUIRE_SPECIAL(EGREP, [AC_PROG_EGREP])
kevinw@2204 414 BASIC_REQUIRE_SPECIAL(FGREP, [AC_PROG_FGREP])
kevinw@2204 415 BASIC_REQUIRE_SPECIAL(SED, [AC_PROG_SED])
ohair@494 416
ihse@839 417 # Always force rm.
ihse@839 418 RM="$RM -f"
ohair@494 419
ihse@839 420 # pwd behaves differently on various platforms and some don't support the -L flag.
ihse@839 421 # Always use the bash builtin pwd to get uniform behavior.
ihse@839 422 THEPWDCMD=pwd
erikj@726 423
ihse@839 424 # These are not required on all platforms
kevinw@2204 425 BASIC_PATH_PROGS(CYGPATH, cygpath)
kevinw@2204 426 BASIC_PATH_PROGS(READLINK, [greadlink readlink])
kevinw@2204 427 BASIC_PATH_PROGS(DF, df)
kevinw@2204 428 BASIC_PATH_PROGS(SETFILE, SetFile)
kevinw@2219 429 BASIC_PATH_PROGS(CPIO, [cpio bsdcpio])
ohair@478 430 ])
erikj@459 431
ohair@478 432 # Setup basic configuration paths, and platform-specific stuff related to PATHs.
ohair@478 433 AC_DEFUN_ONCE([BASIC_SETUP_PATHS],
ohair@478 434 [
kevinw@2212 435 # Save the current directory this script was started from
ihse@839 436 CURDIR="$PWD"
ohair@494 437
ihse@839 438 if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
ihse@839 439 PATH_SEP=";"
ihse@839 440 BASIC_CHECK_PATHS_WINDOWS
ihse@839 441 else
ihse@839 442 PATH_SEP=":"
ihse@839 443 fi
ihse@839 444 AC_SUBST(PATH_SEP)
erikj@459 445
kevinw@2214 446 # We get the top-level directory from the supporting wrappers.
kevinw@2214 447 AC_MSG_CHECKING([for top-level directory])
kevinw@2214 448 AC_MSG_RESULT([$TOPDIR])
kevinw@2214 449 AC_SUBST(TOPDIR)
kevinw@2214 450
kevinw@2214 451 # We can only call BASIC_FIXUP_PATH after BASIC_CHECK_PATHS_WINDOWS.
kevinw@2214 452 BASIC_FIXUP_PATH(CURDIR)
kevinw@2214 453 BASIC_FIXUP_PATH(TOPDIR)
kevinw@2214 454 # SRC_ROOT is a traditional alias for TOPDIR.
kevinw@2214 455 SRC_ROOT=$TOPDIR
kevinw@2214 456
kevinw@2214 457 # Locate the directory of this script.
kevinw@2214 458 AUTOCONF_DIR=$TOPDIR/common/autoconf
kevinw@2215 459 ])
kevinw@2215 460
kevinw@2224 461 # Evaluates platform specific overrides for devkit variables.
kevinw@2224 462 # $1: Name of variable
kevinw@2224 463 AC_DEFUN([BASIC_EVAL_DEVKIT_VARIABLE],
kevinw@2224 464 [
kevinw@2224 465 if test "x[$]$1" = x; then
kevinw@2224 466 eval $1="\${$1_${OPENJDK_TARGET_CPU}}"
kevinw@2224 467 fi
kevinw@2224 468 ])
kevinw@2224 469
kevinw@2215 470 AC_DEFUN_ONCE([BASIC_SETUP_DEVKIT],
kevinw@2215 471 [
kevinw@2215 472 AC_ARG_WITH([devkit], [AS_HELP_STRING([--with-devkit],
kevinw@2215 473 [use this devkit for compilers, tools and resources])],
kevinw@2215 474 [
kevinw@2215 475 BASIC_FIXUP_PATH([with_devkit])
kevinw@2215 476 DEVKIT_ROOT="$with_devkit"
kevinw@2215 477 # Check for a meta data info file in the root of the devkit
kevinw@2215 478 if test -f "$DEVKIT_ROOT/devkit.info"; then
kevinw@2224 479 . $DEVKIT_ROOT/devkit.info
kevinw@2215 480 # This potentially sets the following:
kevinw@2224 481 # A descriptive name of the devkit
kevinw@2224 482 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_NAME])
kevinw@2224 483 # Corresponds to --with-extra-path
kevinw@2224 484 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_EXTRA_PATH])
kevinw@2224 485 # Corresponds to --with-toolchain-path
kevinw@2224 486 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_TOOLCHAIN_PATH])
kevinw@2224 487 # Corresponds to --with-sysroot
kevinw@2224 488 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_SYSROOT])
kevinw@2224 489
kevinw@2224 490 # Identifies the Visual Studio version in the devkit
kevinw@2224 491 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_VERSION])
kevinw@2224 492 # The Visual Studio include environment variable
kevinw@2224 493 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_INCLUDE])
kevinw@2224 494 # The Visual Studio lib environment variable
kevinw@2224 495 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_VS_LIB])
kevinw@2224 496 # Corresponds to --with-msvcr-dll
kevinw@2224 497 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_MSVCR_DLL])
kevinw@2224 498 # Corresponds to --with-msvcp-dll
kevinw@2224 499 BASIC_EVAL_DEVKIT_VARIABLE([DEVKIT_MSVCP_DLL])
kevinw@2215 500 fi
kevinw@2215 501
kevinw@2215 502 AC_MSG_CHECKING([for devkit])
kevinw@2215 503 if test "x$DEVKIT_NAME" != x; then
kevinw@2215 504 AC_MSG_RESULT([$DEVKIT_NAME in $DEVKIT_ROOT])
kevinw@2215 505 else
kevinw@2215 506 AC_MSG_RESULT([$DEVKIT_ROOT])
kevinw@2215 507 fi
kevinw@2215 508
kevinw@2224 509 BASIC_PREPEND_TO_PATH([EXTRA_PATH],$DEVKIT_EXTRA_PATH)
kevinw@2215 510
kevinw@2215 511 # Fallback default of just /bin if DEVKIT_PATH is not defined
kevinw@2215 512 if test "x$DEVKIT_TOOLCHAIN_PATH" = x; then
kevinw@2215 513 DEVKIT_TOOLCHAIN_PATH="$DEVKIT_ROOT/bin"
kevinw@2215 514 fi
kevinw@2215 515 BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$DEVKIT_TOOLCHAIN_PATH)
kevinw@2215 516
kevinw@2215 517 # If DEVKIT_SYSROOT is set, use that, otherwise try a couple of known
kevinw@2215 518 # places for backwards compatiblity.
kevinw@2215 519 if test "x$DEVKIT_SYSROOT" != x; then
kevinw@2215 520 SYSROOT="$DEVKIT_SYSROOT"
kevinw@2215 521 elif test -d "$DEVKIT_ROOT/$host_alias/libc"; then
kevinw@2215 522 SYSROOT="$DEVKIT_ROOT/$host_alias/libc"
kevinw@2215 523 elif test -d "$DEVKIT_ROOT/$host/sys-root"; then
kevinw@2215 524 SYSROOT="$DEVKIT_ROOT/$host/sys-root"
kevinw@2215 525 fi
kevinw@2215 526 ]
kevinw@2215 527 )
kevinw@2215 528
kevinw@2215 529 # You can force the sysroot if the sysroot encoded into the compiler tools
kevinw@2215 530 # is not correct.
kevinw@2215 531 AC_ARG_WITH(sys-root, [AS_HELP_STRING([--with-sys-root],
kevinw@2215 532 [alias for --with-sysroot for backwards compatability])],
kevinw@2215 533 [SYSROOT=$with_sys_root]
kevinw@2215 534 )
kevinw@2215 535
kevinw@2215 536 AC_ARG_WITH(sysroot, [AS_HELP_STRING([--with-sysroot],
kevinw@2215 537 [use this directory as sysroot)])],
kevinw@2215 538 [SYSROOT=$with_sysroot]
kevinw@2215 539 )
kevinw@2215 540
kevinw@2215 541 AC_ARG_WITH([tools-dir], [AS_HELP_STRING([--with-tools-dir],
kevinw@2215 542 [alias for --with-toolchain-path for backwards compatibility])],
kevinw@2215 543 [BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$with_tools_dir)]
kevinw@2215 544 )
kevinw@2215 545
kevinw@2215 546 AC_ARG_WITH([toolchain-path], [AS_HELP_STRING([--with-toolchain-path],
kevinw@2215 547 [prepend these directories when searching for toolchain binaries (compilers etc)])],
kevinw@2215 548 [BASIC_PREPEND_TO_PATH([TOOLCHAIN_PATH],$with_toolchain_path)]
kevinw@2215 549 )
kevinw@2215 550
kevinw@2215 551 AC_ARG_WITH([extra-path], [AS_HELP_STRING([--with-extra-path],
kevinw@2215 552 [prepend these directories to the default path])],
kevinw@2215 553 [BASIC_PREPEND_TO_PATH([EXTRA_PATH],$with_extra_path)]
kevinw@2215 554 )
kevinw@2215 555
kevinw@2215 556 # Prepend the extra path to the global path
kevinw@2215 557 BASIC_PREPEND_TO_PATH([PATH],$EXTRA_PATH)
kevinw@2214 558
ihse@839 559 if test "x$OPENJDK_BUILD_OS" = "xsolaris"; then
erikj@459 560 # Add extra search paths on solaris for utilities like ar and as etc...
erikj@459 561 PATH="$PATH:/usr/ccs/bin:/usr/sfw/bin:/opt/csw/bin"
ihse@839 562 fi
erikj@459 563
ddehaven@1304 564 # Xcode version will be validated later
ddehaven@1304 565 AC_ARG_WITH([xcode-path], [AS_HELP_STRING([--with-xcode-path],
ddehaven@1304 566 [explicit path to Xcode 4 (generally for building on 10.9 and later)])],
ddehaven@1304 567 [XCODE_PATH=$with_xcode_path]
ddehaven@1304 568 )
ddehaven@1304 569
kevinw@2215 570 AC_MSG_CHECKING([for sysroot])
kevinw@2215 571 AC_MSG_RESULT([$SYSROOT])
kevinw@2215 572 AC_MSG_CHECKING([for toolchain path])
kevinw@2215 573 AC_MSG_RESULT([$TOOLCHAIN_PATH])
kevinw@2215 574 AC_MSG_CHECKING([for extra path])
kevinw@2215 575 AC_MSG_RESULT([$EXTRA_PATH])
erikj@459 576 ])
erikj@459 577
erikj@459 578 AC_DEFUN_ONCE([BASIC_SETUP_OUTPUT_DIR],
erikj@459 579 [
erikj@459 580
ihse@839 581 AC_ARG_WITH(conf-name, [AS_HELP_STRING([--with-conf-name],
ihse@839 582 [use this as the name of the configuration @<:@generated from important configuration options@:>@])],
ihse@839 583 [ CONF_NAME=${with_conf_name} ])
erikj@459 584
ihse@839 585 # Test from where we are running configure, in or outside of src root.
kevinw@2212 586 AC_MSG_CHECKING([where to store configuration])
ihse@839 587 if test "x$CURDIR" = "x$SRC_ROOT" || test "x$CURDIR" = "x$SRC_ROOT/common" \
ihse@839 588 || test "x$CURDIR" = "x$SRC_ROOT/common/autoconf" \
ihse@912 589 || test "x$CURDIR" = "x$SRC_ROOT/make" ; then
erikj@459 590 # We are running configure from the src root.
erikj@459 591 # Create a default ./build/target-variant-debuglevel output root.
erikj@459 592 if test "x${CONF_NAME}" = x; then
kevinw@2212 593 AC_MSG_RESULT([in default location])
ihse@839 594 CONF_NAME="${OPENJDK_TARGET_OS}-${OPENJDK_TARGET_CPU}-${JDK_VARIANT}-${ANDED_JVM_VARIANTS}-${DEBUG_LEVEL}"
kevinw@2212 595 else
kevinw@2212 596 AC_MSG_RESULT([in build directory with custom name])
erikj@459 597 fi
erikj@459 598 OUTPUT_ROOT="$SRC_ROOT/build/${CONF_NAME}"
ohair@494 599 $MKDIR -p "$OUTPUT_ROOT"
erikj@459 600 if test ! -d "$OUTPUT_ROOT"; then
ihse@839 601 AC_MSG_ERROR([Could not create build directory $OUTPUT_ROOT])
erikj@459 602 fi
ihse@839 603 else
erikj@459 604 # We are running configure from outside of the src dir.
erikj@459 605 # Then use the current directory as output dir!
erikj@459 606 # If configuration is situated in normal build directory, just use the build
erikj@459 607 # directory name as configuration name, otherwise use the complete path.
erikj@459 608 if test "x${CONF_NAME}" = x; then
ihse@839 609 CONF_NAME=`$ECHO $CURDIR | $SED -e "s!^${SRC_ROOT}/build/!!"`
erikj@459 610 fi
erikj@459 611 OUTPUT_ROOT="$CURDIR"
kevinw@2212 612 AC_MSG_RESULT([in current directory])
ihse@495 613
ihse@495 614 # WARNING: This might be a bad thing to do. You need to be sure you want to
ihse@495 615 # have a configuration in this directory. Do some sanity checks!
ihse@495 616
ihse@495 617 if test ! -e "$OUTPUT_ROOT/spec.gmk"; then
ihse@495 618 # If we have a spec.gmk, we have run here before and we are OK. Otherwise, check for
ihse@495 619 # other files
ihse@495 620 files_present=`$LS $OUTPUT_ROOT`
ihse@839 621 # Configure has already touched config.log and confdefs.h in the current dir when this check
erikj@502 622 # is performed.
kevinw@2224 623 filtered_files=`$ECHO "$files_present" \
kevinw@2224 624 | $SED -e 's/config.log//g' \
kevinw@2224 625 -e 's/confdefs.h//g' \
kevinw@2224 626 -e 's/fixpath.exe//g' \
kevinw@2224 627 -e 's/ //g' \
kevinw@2224 628 | $TR -d '\n'`
erikj@502 629 if test "x$filtered_files" != x; then
ihse@495 630 AC_MSG_NOTICE([Current directory is $CURDIR.])
ihse@495 631 AC_MSG_NOTICE([Since this is not the source root, configure will output the configuration here])
ihse@495 632 AC_MSG_NOTICE([(as opposed to creating a configuration in <src_root>/build/<conf-name>).])
ihse@495 633 AC_MSG_NOTICE([However, this directory is not empty. This is not allowed, since it could])
ihse@495 634 AC_MSG_NOTICE([seriously mess up just about everything.])
ihse@495 635 AC_MSG_NOTICE([Try 'cd $SRC_ROOT' and restart configure])
ihse@495 636 AC_MSG_NOTICE([(or create a new empty directory and cd to it).])
ihse@495 637 AC_MSG_ERROR([Will not continue creating configuration in $CURDIR])
ihse@495 638 fi
ihse@495 639 fi
ihse@839 640 fi
ihse@839 641 AC_MSG_CHECKING([what configuration name to use])
ihse@839 642 AC_MSG_RESULT([$CONF_NAME])
erikj@459 643
ihse@839 644 BASIC_FIXUP_PATH(OUTPUT_ROOT)
erikj@459 645
ihse@839 646 AC_SUBST(SPEC, $OUTPUT_ROOT/spec.gmk)
ihse@839 647 AC_SUBST(CONF_NAME, $CONF_NAME)
ihse@839 648 AC_SUBST(OUTPUT_ROOT, $OUTPUT_ROOT)
erikj@459 649
ihse@839 650 # Most of the probed defines are put into config.h
ihse@839 651 AC_CONFIG_HEADERS([$OUTPUT_ROOT/config.h:$AUTOCONF_DIR/config.h.in])
ihse@839 652 # The spec.gmk file contains all variables for the make system.
ihse@839 653 AC_CONFIG_FILES([$OUTPUT_ROOT/spec.gmk:$AUTOCONF_DIR/spec.gmk.in])
ihse@839 654 # The hotspot-spec.gmk file contains legacy variables for the hotspot make system.
ihse@839 655 AC_CONFIG_FILES([$OUTPUT_ROOT/hotspot-spec.gmk:$AUTOCONF_DIR/hotspot-spec.gmk.in])
ihse@839 656 # The bootcycle-spec.gmk file contains support for boot cycle builds.
ihse@839 657 AC_CONFIG_FILES([$OUTPUT_ROOT/bootcycle-spec.gmk:$AUTOCONF_DIR/bootcycle-spec.gmk.in])
ihse@839 658 # The compare.sh is used to compare the build output to other builds.
ihse@839 659 AC_CONFIG_FILES([$OUTPUT_ROOT/compare.sh:$AUTOCONF_DIR/compare.sh.in])
ihse@839 660 # Spec.sh is currently used by compare-objects.sh
ihse@839 661 AC_CONFIG_FILES([$OUTPUT_ROOT/spec.sh:$AUTOCONF_DIR/spec.sh.in])
ihse@839 662 # The generated Makefile knows where the spec.gmk is and where the source is.
ihse@839 663 # You can run make from the OUTPUT_ROOT, or from the top-level Makefile
ihse@839 664 # which will look for generated configurations
ihse@839 665 AC_CONFIG_FILES([$OUTPUT_ROOT/Makefile:$AUTOCONF_DIR/Makefile.in])
erikj@459 666 ])
erikj@459 667
erikj@459 668 AC_DEFUN_ONCE([BASIC_SETUP_LOGGING],
erikj@459 669 [
ihse@839 670 # Setup default logging of stdout and stderr to build.log in the output root.
ihse@839 671 BUILD_LOG='$(OUTPUT_ROOT)/build.log'
ihse@839 672 BUILD_LOG_PREVIOUS='$(OUTPUT_ROOT)/build.log.old'
ihse@839 673 BUILD_LOG_WRAPPER='$(BASH) $(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG)'
ihse@839 674 AC_SUBST(BUILD_LOG)
ihse@839 675 AC_SUBST(BUILD_LOG_PREVIOUS)
ihse@839 676 AC_SUBST(BUILD_LOG_WRAPPER)
erikj@459 677 ])
erikj@459 678
erikj@459 679
erikj@459 680 #%%% Simple tools %%%
erikj@459 681
ohair@478 682 # Check if we have found a usable version of make
ohair@478 683 # $1: the path to a potential make binary (or empty)
ohair@478 684 # $2: the description on how we found this
ohair@478 685 AC_DEFUN([BASIC_CHECK_MAKE_VERSION],
ohair@478 686 [
ohair@478 687 MAKE_CANDIDATE="$1"
ohair@478 688 DESCRIPTION="$2"
ohair@478 689 if test "x$MAKE_CANDIDATE" != x; then
ohair@478 690 AC_MSG_NOTICE([Testing potential make at $MAKE_CANDIDATE, found using $DESCRIPTION])
ohair@478 691 MAKE_VERSION_STRING=`$MAKE_CANDIDATE --version | $HEAD -n 1`
ohair@478 692 IS_GNU_MAKE=`$ECHO $MAKE_VERSION_STRING | $GREP 'GNU Make'`
ohair@478 693 if test "x$IS_GNU_MAKE" = x; then
ohair@478 694 AC_MSG_NOTICE([Found potential make at $MAKE_CANDIDATE, however, this is not GNU Make. Ignoring.])
ohair@478 695 else
vinnie@903 696 IS_MODERN_MAKE=`$ECHO $MAKE_VERSION_STRING | $GREP -e '3\.8[[12]]' -e '4\.'`
ohair@478 697 if test "x$IS_MODERN_MAKE" = x; then
ohair@478 698 AC_MSG_NOTICE([Found GNU make at $MAKE_CANDIDATE, however this is not version 3.81 or later. (it is: $MAKE_VERSION_STRING). Ignoring.])
ohair@494 699 else
ohair@494 700 if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
ohair@494 701 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
ohair@494 702 MAKE_EXPECTED_ENV='cygwin'
ohair@494 703 elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
ohair@494 704 MAKE_EXPECTED_ENV='msys'
ohair@494 705 else
ohair@494 706 AC_MSG_ERROR([Unknown Windows environment])
ohair@494 707 fi
ohair@494 708 MAKE_BUILT_FOR=`$MAKE_CANDIDATE --version | $GREP -i 'built for'`
ohair@494 709 IS_MAKE_CORRECT_ENV=`$ECHO $MAKE_BUILT_FOR | $GREP $MAKE_EXPECTED_ENV`
ohair@494 710 else
ohair@494 711 # Not relevant for non-Windows
ohair@494 712 IS_MAKE_CORRECT_ENV=true
ohair@494 713 fi
ohair@494 714 if test "x$IS_MAKE_CORRECT_ENV" = x; then
ohair@494 715 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.])
ohair@494 716 else
ohair@494 717 FOUND_MAKE=$MAKE_CANDIDATE
ohair@494 718 BASIC_FIXUP_EXECUTABLE(FOUND_MAKE)
ohair@494 719 fi
ohair@478 720 fi
ohair@478 721 fi
ohair@478 722 fi
ohair@478 723 ])
ohair@478 724
ohair@478 725 # Goes looking for a usable version of GNU make.
ohair@478 726 AC_DEFUN([BASIC_CHECK_GNU_MAKE],
ohair@478 727 [
ohair@478 728 # We need to find a recent version of GNU make. Especially on Solaris, this can be tricky.
ohair@478 729 if test "x$MAKE" != x; then
ohair@478 730 # User has supplied a make, test it.
ohair@478 731 if test ! -f "$MAKE"; then
ohair@478 732 AC_MSG_ERROR([The specified make (by MAKE=$MAKE) is not found.])
ohair@478 733 fi
ohair@494 734 BASIC_CHECK_MAKE_VERSION("$MAKE", [user supplied MAKE=$MAKE])
ohair@478 735 if test "x$FOUND_MAKE" = x; then
ohair@478 736 AC_MSG_ERROR([The specified make (by MAKE=$MAKE) is not GNU make 3.81 or newer.])
ohair@478 737 fi
ohair@478 738 else
ohair@478 739 # Try our hardest to locate a correct version of GNU make
ohair@478 740 AC_PATH_PROGS(CHECK_GMAKE, gmake)
ohair@478 741 BASIC_CHECK_MAKE_VERSION("$CHECK_GMAKE", [gmake in PATH])
ohair@478 742
ohair@478 743 if test "x$FOUND_MAKE" = x; then
ohair@478 744 AC_PATH_PROGS(CHECK_MAKE, make)
ohair@478 745 BASIC_CHECK_MAKE_VERSION("$CHECK_MAKE", [make in PATH])
ohair@478 746 fi
ohair@478 747
ohair@478 748 if test "x$FOUND_MAKE" = x; then
kevinw@2215 749 if test "x$TOOLCHAIN_PATH" != x; then
kevinw@2215 750 # We have a toolchain path, check that as well before giving up.
ohair@478 751 OLD_PATH=$PATH
kevinw@2215 752 PATH=$TOOLCHAIN_PATH:$PATH
ohair@478 753 AC_PATH_PROGS(CHECK_TOOLSDIR_GMAKE, gmake)
ohair@478 754 BASIC_CHECK_MAKE_VERSION("$CHECK_TOOLSDIR_GMAKE", [gmake in tools-dir])
ohair@478 755 if test "x$FOUND_MAKE" = x; then
ohair@478 756 AC_PATH_PROGS(CHECK_TOOLSDIR_MAKE, make)
ohair@478 757 BASIC_CHECK_MAKE_VERSION("$CHECK_TOOLSDIR_MAKE", [make in tools-dir])
ohair@478 758 fi
ohair@478 759 PATH=$OLD_PATH
ohair@478 760 fi
ohair@478 761 fi
ohair@478 762
ohair@478 763 if test "x$FOUND_MAKE" = x; then
ohair@478 764 AC_MSG_ERROR([Cannot find GNU make 3.81 or newer! Please put it in the path, or add e.g. MAKE=/opt/gmake3.81/make as argument to configure.])
ohair@478 765 fi
ohair@478 766 fi
ohair@478 767
ohair@478 768 MAKE=$FOUND_MAKE
ohair@478 769 AC_SUBST(MAKE)
ohair@478 770 AC_MSG_NOTICE([Using GNU make 3.81 (or later) at $FOUND_MAKE (version: $MAKE_VERSION_STRING)])
ohair@478 771 ])
ohair@478 772
erikj@459 773 AC_DEFUN([BASIC_CHECK_FIND_DELETE],
erikj@459 774 [
ihse@839 775 # Test if find supports -delete
ihse@839 776 AC_MSG_CHECKING([if find supports -delete])
ihse@839 777 FIND_DELETE="-delete"
erikj@459 778
ihse@839 779 DELETEDIR=`$MKTEMP -d tmp.XXXXXXXXXX` || (echo Could not create temporary directory!; exit $?)
erikj@459 780
ihse@839 781 echo Hejsan > $DELETEDIR/TestIfFindSupportsDelete
erikj@459 782
ihse@839 783 TEST_DELETE=`$FIND "$DELETEDIR" -name TestIfFindSupportsDelete $FIND_DELETE 2>&1`
ihse@839 784 if test -f $DELETEDIR/TestIfFindSupportsDelete; then
ihse@839 785 # No, it does not.
ihse@839 786 rm $DELETEDIR/TestIfFindSupportsDelete
ihse@839 787 FIND_DELETE="-exec rm \{\} \+"
ihse@839 788 AC_MSG_RESULT([no])
ihse@839 789 else
ihse@839 790 AC_MSG_RESULT([yes])
ihse@839 791 fi
ihse@839 792 rmdir $DELETEDIR
ihse@839 793 AC_SUBST(FIND_DELETE)
erikj@459 794 ])
erikj@459 795
ohair@494 796 AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS],
erikj@459 797 [
ihse@839 798 BASIC_CHECK_GNU_MAKE
ohair@478 799
ihse@839 800 BASIC_CHECK_FIND_DELETE
ohair@478 801
ihse@839 802 # These tools might not be installed by default,
ihse@839 803 # need hint on how to install them.
kevinw@2204 804 BASIC_REQUIRE_PROGS(UNZIP, unzip)
kevinw@2204 805 BASIC_REQUIRE_PROGS(ZIP, zip)
erikj@459 806
ihse@839 807 # Non-required basic tools
ohair@478 808
kevinw@2204 809 BASIC_PATH_PROGS(LDD, ldd)
ihse@839 810 if test "x$LDD" = "x"; then
erikj@459 811 # List shared lib dependencies is used for
erikj@459 812 # debug output and checking for forbidden dependencies.
erikj@459 813 # We can build without it.
erikj@459 814 LDD="true"
ihse@839 815 fi
kevinw@2204 816 BASIC_PATH_PROGS(READELF, [readelf greadelf])
kevinw@2204 817 BASIC_PATH_PROGS(HG, hg)
kevinw@2204 818 BASIC_PATH_PROGS(STAT, stat)
kevinw@2204 819 BASIC_PATH_PROGS(TIME, time)
ihse@839 820 # Check if it's GNU time
ihse@839 821 IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'`
ihse@839 822 if test "x$IS_GNU_TIME" != x; then
ihse@839 823 IS_GNU_TIME=yes
ihse@839 824 else
ihse@839 825 IS_GNU_TIME=no
ihse@839 826 fi
ihse@839 827 AC_SUBST(IS_GNU_TIME)
ohair@494 828
ihse@839 829 if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
kevinw@2204 830 BASIC_REQUIRE_PROGS(COMM, comm)
ihse@839 831 fi
erikj@670 832
ihse@839 833 if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
kevinw@2204 834 BASIC_REQUIRE_PROGS(DSYMUTIL, dsymutil)
kevinw@2204 835 BASIC_REQUIRE_PROGS(XATTR, xattr)
kevinw@2204 836 BASIC_PATH_PROGS(CODESIGN, codesign)
ihse@839 837 if test "x$CODESIGN" != "x"; then
ihse@839 838 # Verify that the openjdk_codesign certificate is present
ihse@839 839 AC_MSG_CHECKING([if openjdk_codesign certificate is present])
ihse@839 840 rm -f codesign-testfile
ihse@839 841 touch codesign-testfile
ihse@839 842 codesign -s openjdk_codesign codesign-testfile 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD || CODESIGN=
ihse@839 843 rm -f codesign-testfile
ihse@839 844 if test "x$CODESIGN" = x; then
ihse@839 845 AC_MSG_RESULT([no])
ihse@839 846 else
ihse@839 847 AC_MSG_RESULT([yes])
ihse@839 848 fi
erikj@725 849 fi
erikj@725 850 fi
erikj@459 851 ])
erikj@459 852
ohair@494 853 # Check if build directory is on local disk. If not possible to determine,
ohair@494 854 # we prefer to claim it's local.
erikj@459 855 # Argument 1: directory to test
erikj@459 856 # Argument 2: what to do if it is on local disk
erikj@459 857 # Argument 3: what to do otherwise (remote disk or failure)
erikj@459 858 AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK],
erikj@459 859 [
ihse@839 860 # df -l lists only local disks; if the given directory is not found then
ihse@839 861 # a non-zero exit code is given
ohair@494 862 if test "x$DF" = x; then
ohair@494 863 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
ohair@494 864 # msys does not have df; use Windows "net use" instead.
ohair@494 865 IS_NETWORK_DISK=`net use | grep \`pwd -W | cut -d ":" -f 1 | tr a-z A-Z\`:`
ohair@494 866 if test "x$IS_NETWORK_DISK" = x; then
ohair@494 867 $2
ohair@494 868 else
ohair@494 869 $3
ohair@494 870 fi
ohair@494 871 else
ohair@494 872 # No df here, say it's local
ohair@494 873 $2
ohair@494 874 fi
ohair@494 875 else
ohair@494 876 if $DF -l $1 > /dev/null 2>&1; then
ohair@494 877 $2
ohair@494 878 else
ohair@494 879 $3
ohair@494 880 fi
ohair@494 881 fi
erikj@459 882 ])
erikj@459 883
erikj@556 884 # Check that source files have basic read permissions set. This might
erikj@556 885 # not be the case in cygwin in certain conditions.
erikj@556 886 AC_DEFUN_ONCE([BASIC_CHECK_SRC_PERMS],
erikj@556 887 [
kevinw@2219 888 if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
erikj@556 889 file_to_test="$SRC_ROOT/LICENSE"
erikj@556 890 if test `$STAT -c '%a' "$file_to_test"` -lt 400; then
erikj@556 891 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.])
erikj@556 892 fi
erikj@556 893 fi
erikj@556 894 ])
erikj@556 895
erikj@459 896 AC_DEFUN_ONCE([BASIC_TEST_USABILITY_ISSUES],
erikj@459 897 [
kevinw@2204 898 # Did user specify any unknown variables?
kevinw@2204 899 BASIC_CHECK_LEFTOVER_OVERRIDDEN
kevinw@2204 900
ihse@839 901 AC_MSG_CHECKING([if build directory is on local disk])
ihse@839 902 BASIC_CHECK_DIR_ON_LOCAL_DISK($OUTPUT_ROOT,
ihse@839 903 [OUTPUT_DIR_IS_LOCAL="yes"],
ihse@839 904 [OUTPUT_DIR_IS_LOCAL="no"])
ihse@839 905 AC_MSG_RESULT($OUTPUT_DIR_IS_LOCAL)
erikj@459 906
ihse@839 907 BASIC_CHECK_SRC_PERMS
erikj@459 908
ihse@839 909 # Check if the user has any old-style ALT_ variables set.
ihse@839 910 FOUND_ALT_VARIABLES=`env | grep ^ALT_`
erikj@556 911
ihse@839 912 # Before generating output files, test if they exist. If they do, this is a reconfigure.
ihse@839 913 # Since we can't properly handle the dependencies for this, warn the user about the situation
ihse@839 914 if test -e $OUTPUT_ROOT/spec.gmk; then
ihse@839 915 IS_RECONFIGURE=yes
ihse@839 916 else
ihse@839 917 IS_RECONFIGURE=no
ihse@839 918 fi
erikj@459 919 ])

mercurial