common/autoconf/basics.m4

Tue, 18 Jun 2013 11:30:36 +0200

author
erikj
date
Tue, 18 Jun 2013 11:30:36 +0200
changeset 740
c0fa87863427
parent 726
c31e9dc1fe3d
child 750
f5eb23490e6a
permissions
-rw-r--r--

8015377: Support using compiler devkits on Linux
Reviewed-by: tbell, dholmes

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

mercurial