common/autoconf/basics.m4

Fri, 26 Oct 2012 14:29:57 -0700

author
ohair
date
Fri, 26 Oct 2012 14:29:57 -0700
changeset 494
e64f2cb57d05
parent 478
2ba6f4da4bf3
child 495
e3182741ade2
permissions
-rw-r--r--

8000992: Update new build-infra makefiles
Summary: Build-infra project integration. Multiple authors on this work: erikj and ihse primarily, also changes from ohair, tbell, and dholmes. Special credit to ohstrom for his smartjavac work.
Reviewed-by: erikj, ihse, dholmes, tbell

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

mercurial