common/autoconf/basics.m4

Thu, 31 Aug 2017 15:40:18 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:40:18 +0800
changeset 1133
50aaf272884f
parent 912
a667caba1e84
parent 0
75a576e87639
child 1482
8fb429038513
permissions
-rw-r--r--

merge

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

mercurial