common/autoconf/configure.ac

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 575
6f8f7a5449f6
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

ohair@425 1 #
ohair@425 2 # Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
ohair@425 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@425 4 #
ohair@425 5 # This code is free software; you can redistribute it and/or modify it
ohair@425 6 # under the terms of the GNU General Public License version 2 only, as
ohair@425 7 # published by the Free Software Foundation. Oracle designates this
ohair@425 8 # particular file as subject to the "Classpath" exception as provided
ohair@425 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@425 10 #
ohair@425 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@425 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@425 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@425 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@425 15 # accompanied this code).
ohair@425 16 #
ohair@425 17 # You should have received a copy of the GNU General Public License version
ohair@425 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@425 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@425 20 #
ohair@425 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@425 22 # or visit www.oracle.com if you need additional information or have any
ohair@425 23 # questions.
ohair@425 24 #
ohair@425 25
erikj@458 26 ###############################################################################
erikj@458 27 #
erikj@458 28 # Includes and boilerplate
erikj@458 29 #
erikj@458 30 ###############################################################################
erikj@458 31
erikj@458 32
ohair@425 33 AC_PREREQ([2.61])
ohair@494 34 AC_INIT(OpenJDK, jdk8, build-dev@openjdk.java.net,,http://openjdk.java.net)
ohair@425 35
ohair@425 36 AC_CONFIG_AUX_DIR([build-aux])
erikj@458 37 m4_include([build-aux/pkg.m4])
ohair@425 38
erikj@458 39 # Include these first...
erikj@458 40 m4_include([basics.m4])
ohair@494 41 m4_include([basics_windows.m4])
ohair@425 42 m4_include([builddeps.m4])
erikj@458 43 # ... then the rest
erikj@458 44 m4_include([boot-jdk.m4])
erikj@458 45 m4_include([build-performance.m4])
erikj@458 46 m4_include([help.m4])
erikj@458 47 m4_include([jdk-options.m4])
erikj@458 48 m4_include([libraries.m4])
ohair@425 49 m4_include([platform.m4])
erikj@458 50 m4_include([source-dirs.m4])
erikj@458 51 m4_include([toolchain.m4])
ohair@494 52 m4_include([toolchain_windows.m4])
ohair@425 53
ohair@494 54 AC_DEFUN_ONCE([CUSTOM_EARLY_HOOK])
ohair@494 55 AC_DEFUN_ONCE([CUSTOM_LATE_HOOK])
ohair@494 56
ohair@494 57 # This line needs to be here, verbatim, after all includes and the dummy hook
ohair@494 58 # definitions. It is replaced with custom functionality when building
ohair@478 59 # custom sources.
ohair@494 60 #CUSTOM_AUTOCONF_INCLUDE
ohair@494 61
ohair@494 62 # Do not change or remove the following line, it is needed for consistency checks:
ohair@494 63 DATE_WHEN_GENERATED=@DATE_WHEN_GENERATED@
ohair@425 64
ohair@425 65 ###############################################################################
ohair@425 66 #
ohair@494 67 # Initialization / Boot-strapping
ohair@494 68 #
ohair@494 69 # The bootstrapping process needs to solve the "chicken or the egg" problem,
ohair@494 70 # thus it jumps back and forth, each time gaining something needed later on.
ohair@425 71 #
erikj@458 72 ###############################################################################
ohair@425 73
erikj@458 74 # Basic initialization that must happen first of all
erikj@458 75 BASIC_INIT
ohair@494 76 BASIC_SETUP_FUNDAMENTAL_TOOLS
ohair@478 77
ohair@478 78 # Now we can determine OpenJDK build and target platforms. This is required to
ohair@478 79 # have early on.
ohair@478 80 PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET
ohair@478 81
ohair@494 82 # Continue setting up basic stuff. Most remaining code require fundamental tools.
erikj@458 83 BASIC_SETUP_PATHS
erikj@458 84 BASIC_SETUP_LOGGING
ohair@425 85
ohair@494 86 # These are needed to be able to create a configuration name (and thus the output directory)
ohair@494 87 JDKOPT_SETUP_JDK_VARIANT
ohair@494 88 JDKOPT_SETUP_JVM_VARIANTS
ohair@494 89 JDKOPT_SETUP_DEBUG_LEVEL
ohair@494 90
ohair@494 91 # With basic setup done, call the custom early hook.
ohair@494 92 CUSTOM_EARLY_HOOK
ohair@494 93
ohair@494 94 # To properly create a configuration name, we need to have the OpenJDK target
ohair@494 95 # and options (variants and debug level) parsed.
ohair@494 96 BASIC_SETUP_OUTPUT_DIR
ohair@494 97
erikj@458 98 # Must be done before we can call HELP_MSG_MISSING_DEPENDENCY.
erikj@458 99 HELP_SETUP_DEPENDENCY_HELP
ohair@425 100
ohair@494 101 # Setup tools that requires more complex handling, or that is not needed by the configure script.
ohair@494 102 BASIC_SETUP_COMPLEX_TOOLS
ohair@425 103
ohair@478 104 # Check if pkg-config is available.
ohair@478 105 PKG_PROG_PKG_CONFIG
ohair@478 106
ohair@478 107 # After basic tools have been setup, we can check build os specific details.
ohair@478 108 PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION
ohair@478 109
erikj@458 110 # Setup builddeps, for automatic downloading of tools we need.
erikj@458 111 # This is needed before we can call BDEPS_CHECK_MODULE, which is done in
erikj@458 112 # boot-jdk setup, but we need to have basic tools setup first.
erikj@458 113 BDEPS_CONFIGURE_BUILDDEPS
erikj@458 114 BDEPS_SCAN_FOR_BUILDDEPS
ohair@425 115
ohair@425 116 ###############################################################################
ohair@425 117 #
erikj@458 118 # Determine OpenJDK variants, options and version numbers.
ohair@425 119 #
erikj@458 120 ###############################################################################
ohair@425 121
erikj@458 122 # We need build & target for this.
erikj@458 123 JDKOPT_SETUP_JDK_OPTIONS
erikj@458 124 JDKOPT_SETUP_JDK_VERSION_NUMBERS
ohair@425 125
ohair@425 126 ###############################################################################
ohair@425 127 #
erikj@458 128 # Setup BootJDK, used to bootstrap the build.
ohair@425 129 #
erikj@458 130 ###############################################################################
erikj@445 131
erikj@458 132 BOOTJDK_SETUP_BOOT_JDK
erikj@458 133 BOOTJDK_SETUP_BOOT_JDK_ARGUMENTS
ohair@425 134
ohair@425 135 ###############################################################################
ohair@425 136 #
erikj@458 137 # Configure the sources to use. We can add or override individual directories.
ohair@425 138 #
erikj@458 139 ###############################################################################
ohair@425 140
erikj@458 141 SRCDIRS_SETUP_TOPDIRS
erikj@458 142 SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS
erikj@458 143 SRCDIRS_SETUP_OUTPUT_DIRS
ohair@425 144
ohair@425 145 ###############################################################################
ohair@425 146 #
erikj@458 147 # Setup the toolchain (compilers etc), i.e. the tools that need to be
erikj@458 148 # cross-compilation aware.
ohair@425 149 #
erikj@458 150 ###############################################################################
ohair@425 151
erikj@458 152 TOOLCHAIN_SETUP_SYSROOT_AND_OUT_OPTIONS
erikj@458 153 # Locate the actual tools
erikj@458 154 TOOLCHAIN_SETUP_PATHS
ohair@425 155
erikj@458 156 # FIXME: Currently we must test this after paths but before flags. Fix!
ohair@425 157
erikj@458 158 # And we can test some aspects on the target using configure macros.
ohair@478 159 PLATFORM_SETUP_OPENJDK_TARGET_BITS
erikj@458 160 PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS
ohair@425 161
erikj@458 162 # Configure flags for the tools
erikj@458 163 TOOLCHAIN_SETUP_COMPILER_FLAGS_FOR_LIBS
erikj@458 164 TOOLCHAIN_SETUP_COMPILER_FLAGS_FOR_OPTIMIZATION
erikj@458 165 TOOLCHAIN_SETUP_COMPILER_FLAGS_FOR_JDK
erikj@458 166
erikj@458 167 # Setup debug symbols (need objcopy from the toolchain for that)
erikj@458 168 JDKOPT_SETUP_DEBUG_SYMBOLS
ohair@425 169
ohair@425 170 ###############################################################################
ohair@425 171 #
erikj@458 172 # Check dependencies for external and internal libraries.
ohair@425 173 #
erikj@458 174 ###############################################################################
ohair@425 175
erikj@458 176 LIB_SETUP_INIT
erikj@458 177 LIB_SETUP_X11
erikj@458 178 LIB_SETUP_CUPS
erikj@458 179 LIB_SETUP_FREETYPE
erikj@458 180 LIB_SETUP_ALSA
erikj@458 181 LIB_SETUP_MISC_LIBS
erikj@458 182 LIB_SETUP_STATIC_LINK_LIBSTDCPP
ohair@425 183
ohair@494 184 # After we have toolchain and the paths to all libraries (needed by msys), we can compile the fixpath helper
ohair@494 185 BASIC_COMPILE_FIXPATH
ohair@494 186
ohair@425 187 ###############################################################################
ohair@425 188 #
erikj@458 189 # We need to do some final tweaking, when everything else is done.
ohair@425 190 #
erikj@458 191 ###############################################################################
ohair@425 192
erikj@458 193 JDKOPT_SETUP_BUILD_TWEAKS
erikj@445 194
ohair@425 195 ###############################################################################
ohair@425 196 #
erikj@458 197 # Configure parts of the build that only affect the build performance,
erikj@458 198 # not the result.
ohair@425 199 #
erikj@458 200 ###############################################################################
ohair@425 201
erikj@458 202 BPERF_SETUP_BUILD_CORES
erikj@458 203 BPERF_SETUP_BUILD_MEMORY
ohair@425 204
erikj@458 205 # Setup smart javac (after cores and memory have been setup)
erikj@458 206 BPERF_SETUP_SMART_JAVAC
ohair@425 207
erikj@458 208 # Can the C/C++ compiler use precompiled headers?
erikj@458 209 BPERF_SETUP_PRECOMPILED_HEADERS
ohair@425 210
erikj@458 211 # Setup use of ccache, if available
erikj@458 212 BPERF_SETUP_CCACHE
ohair@425 213
ohair@425 214 ###############################################################################
ohair@425 215 #
erikj@458 216 # And now the finish...
ohair@425 217 #
ohair@425 218 ###############################################################################
erikj@445 219
erikj@458 220 # Check for some common pitfalls
erikj@458 221 BASIC_TEST_USABILITY_ISSUES
erikj@445 222
ohair@478 223 # At the end, call the custom hook. (Dummy macro if no custom sources available)
ohair@494 224 CUSTOM_LATE_HOOK
ohair@425 225
erikj@458 226 # We're messing a bit with internal autoconf variables to put the config.status
erikj@458 227 # in the output directory instead of the current directory.
erikj@458 228 CONFIG_STATUS="$OUTPUT_ROOT/config.status"
erikj@458 229 # Create the actual output files. Now the main work of configure is done.
erikj@445 230 AC_OUTPUT
erikj@445 231
ohair@478 232 # Make the compare script executable
ohair@478 233 $CHMOD +x $OUTPUT_ROOT/compare.sh
ohair@478 234
erikj@445 235 # Finally output some useful information to the user
erikj@458 236 HELP_PRINT_SUMMARY_AND_WARNINGS

mercurial