common/autoconf/configure.ac

Mon, 09 Mar 2015 10:21:46 +0100

author
ihse
date
Mon, 09 Mar 2015 10:21:46 +0100
changeset 1320
045eace96e6d
parent 972
f3697e0783e2
child 1482
8fb429038513
child 2206
7ba4e17574e0
permissions
-rw-r--r--

8074554: Create custom hook for running after AC_OUTPUT
Reviewed-by: erikj

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
erikj@783 33 AC_PREREQ([2.69])
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])
ihse@1320 56 AC_DEFUN_ONCE([CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK])
ohair@494 57
ohair@494 58 # This line needs to be here, verbatim, after all includes and the dummy hook
ohair@494 59 # definitions. It is replaced with custom functionality when building
ohair@478 60 # custom sources.
ohair@494 61 #CUSTOM_AUTOCONF_INCLUDE
ohair@494 62
ohair@494 63 # Do not change or remove the following line, it is needed for consistency checks:
ohair@494 64 DATE_WHEN_GENERATED=@DATE_WHEN_GENERATED@
ohair@425 65
ohair@425 66 ###############################################################################
ohair@425 67 #
ohair@494 68 # Initialization / Boot-strapping
ohair@494 69 #
ohair@494 70 # The bootstrapping process needs to solve the "chicken or the egg" problem,
ohair@494 71 # thus it jumps back and forth, each time gaining something needed later on.
ohair@425 72 #
erikj@458 73 ###############################################################################
ohair@425 74
erikj@458 75 # Basic initialization that must happen first of all
erikj@458 76 BASIC_INIT
ohair@494 77 BASIC_SETUP_FUNDAMENTAL_TOOLS
ohair@478 78
ohair@478 79 # Now we can determine OpenJDK build and target platforms. This is required to
ohair@478 80 # have early on.
ohair@478 81 PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET
ohair@478 82
ohair@494 83 # Continue setting up basic stuff. Most remaining code require fundamental tools.
erikj@458 84 BASIC_SETUP_PATHS
erikj@458 85 BASIC_SETUP_LOGGING
ohair@425 86
erikj@575 87 # Check if it's a pure open build or if custom sources are to be used.
erikj@575 88 JDKOPT_SETUP_OPEN_OR_CUSTOM
erikj@575 89
ohair@494 90 # These are needed to be able to create a configuration name (and thus the output directory)
ohair@494 91 JDKOPT_SETUP_JDK_VARIANT
simonis@965 92 JDKOPT_SETUP_JVM_INTERPRETER
ohair@494 93 JDKOPT_SETUP_JVM_VARIANTS
ohair@494 94 JDKOPT_SETUP_DEBUG_LEVEL
ohair@494 95
ohair@494 96 # With basic setup done, call the custom early hook.
ohair@494 97 CUSTOM_EARLY_HOOK
ohair@494 98
ohair@494 99 # To properly create a configuration name, we need to have the OpenJDK target
ohair@494 100 # and options (variants and debug level) parsed.
ohair@494 101 BASIC_SETUP_OUTPUT_DIR
ohair@494 102
erikj@458 103 # Must be done before we can call HELP_MSG_MISSING_DEPENDENCY.
erikj@458 104 HELP_SETUP_DEPENDENCY_HELP
ohair@425 105
ohair@494 106 # Setup tools that requires more complex handling, or that is not needed by the configure script.
ohair@494 107 BASIC_SETUP_COMPLEX_TOOLS
ohair@425 108
ohair@478 109 # Check if pkg-config is available.
ohair@478 110 PKG_PROG_PKG_CONFIG
ohair@478 111
ohair@478 112 # After basic tools have been setup, we can check build os specific details.
ohair@478 113 PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION
ohair@478 114
erikj@458 115 # Setup builddeps, for automatic downloading of tools we need.
erikj@458 116 # This is needed before we can call BDEPS_CHECK_MODULE, which is done in
erikj@458 117 # boot-jdk setup, but we need to have basic tools setup first.
erikj@458 118 BDEPS_CONFIGURE_BUILDDEPS
erikj@458 119 BDEPS_SCAN_FOR_BUILDDEPS
ohair@425 120
ohair@425 121 ###############################################################################
ohair@425 122 #
erikj@458 123 # Determine OpenJDK variants, options and version numbers.
ohair@425 124 #
erikj@458 125 ###############################################################################
ohair@425 126
erikj@458 127 # We need build & target for this.
erikj@458 128 JDKOPT_SETUP_JDK_OPTIONS
erikj@458 129 JDKOPT_SETUP_JDK_VERSION_NUMBERS
ohair@425 130
ohair@425 131 ###############################################################################
ohair@425 132 #
erikj@458 133 # Setup BootJDK, used to bootstrap the build.
ohair@425 134 #
erikj@458 135 ###############################################################################
erikj@445 136
erikj@458 137 BOOTJDK_SETUP_BOOT_JDK
erikj@458 138 BOOTJDK_SETUP_BOOT_JDK_ARGUMENTS
ohair@425 139
ohair@425 140 ###############################################################################
ohair@425 141 #
erikj@458 142 # Configure the sources to use. We can add or override individual directories.
ohair@425 143 #
erikj@458 144 ###############################################################################
ohair@425 145
erikj@458 146 SRCDIRS_SETUP_TOPDIRS
erikj@458 147 SRCDIRS_SETUP_ALTERNATIVE_TOPDIRS
erikj@458 148 SRCDIRS_SETUP_OUTPUT_DIRS
ohair@425 149
ohair@425 150 ###############################################################################
ohair@425 151 #
erikj@458 152 # Setup the toolchain (compilers etc), i.e. the tools that need to be
erikj@458 153 # cross-compilation aware.
ohair@425 154 #
erikj@458 155 ###############################################################################
ohair@425 156
erikj@458 157 TOOLCHAIN_SETUP_SYSROOT_AND_OUT_OPTIONS
erikj@458 158 # Locate the actual tools
erikj@458 159 TOOLCHAIN_SETUP_PATHS
ohair@425 160
erikj@458 161 # FIXME: Currently we must test this after paths but before flags. Fix!
ohair@425 162
erikj@458 163 # And we can test some aspects on the target using configure macros.
ohair@478 164 PLATFORM_SETUP_OPENJDK_TARGET_BITS
erikj@458 165 PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS
ohair@425 166
erikj@458 167 # Configure flags for the tools
erikj@458 168 TOOLCHAIN_SETUP_COMPILER_FLAGS_FOR_LIBS
erikj@458 169 TOOLCHAIN_SETUP_COMPILER_FLAGS_FOR_OPTIMIZATION
erikj@458 170 TOOLCHAIN_SETUP_COMPILER_FLAGS_FOR_JDK
erikj@698 171 TOOLCHAIN_SETUP_COMPILER_FLAGS_MISC
erikj@458 172
erikj@458 173 # Setup debug symbols (need objcopy from the toolchain for that)
erikj@458 174 JDKOPT_SETUP_DEBUG_SYMBOLS
ohair@425 175
ohair@425 176 ###############################################################################
ohair@425 177 #
erikj@458 178 # Check dependencies for external and internal libraries.
ohair@425 179 #
erikj@458 180 ###############################################################################
ohair@425 181
ihse@868 182 # After we have toolchain, we can compile fixpath. It's needed by the lib checks.
ihse@868 183 BASIC_COMPILE_FIXPATH
ihse@868 184
erikj@458 185 LIB_SETUP_INIT
erikj@458 186 LIB_SETUP_X11
erikj@458 187 LIB_SETUP_CUPS
erikj@458 188 LIB_SETUP_FREETYPE
erikj@458 189 LIB_SETUP_ALSA
erikj@458 190 LIB_SETUP_MISC_LIBS
erikj@458 191 LIB_SETUP_STATIC_LINK_LIBSTDCPP
ohair@425 192
ohair@494 193
ohair@425 194 ###############################################################################
ohair@425 195 #
erikj@458 196 # We need to do some final tweaking, when everything else is done.
ohair@425 197 #
erikj@458 198 ###############################################################################
ohair@425 199
erikj@458 200 JDKOPT_SETUP_BUILD_TWEAKS
omajid@656 201 JDKOPT_DETECT_INTREE_EC
erikj@445 202
ohair@425 203 ###############################################################################
ohair@425 204 #
erikj@458 205 # Configure parts of the build that only affect the build performance,
erikj@458 206 # not the result.
ohair@425 207 #
erikj@458 208 ###############################################################################
ohair@425 209
erikj@458 210 BPERF_SETUP_BUILD_CORES
erikj@458 211 BPERF_SETUP_BUILD_MEMORY
erikj@635 212 BPERF_SETUP_BUILD_JOBS
ohair@425 213
erikj@458 214 # Setup smart javac (after cores and memory have been setup)
erikj@458 215 BPERF_SETUP_SMART_JAVAC
ohair@425 216
erikj@458 217 # Can the C/C++ compiler use precompiled headers?
erikj@458 218 BPERF_SETUP_PRECOMPILED_HEADERS
ohair@425 219
erikj@458 220 # Setup use of ccache, if available
erikj@458 221 BPERF_SETUP_CCACHE
ohair@425 222
ohair@425 223 ###############################################################################
ohair@425 224 #
erikj@458 225 # And now the finish...
ohair@425 226 #
ohair@425 227 ###############################################################################
erikj@445 228
erikj@458 229 # Check for some common pitfalls
erikj@458 230 BASIC_TEST_USABILITY_ISSUES
erikj@445 231
ohair@478 232 # At the end, call the custom hook. (Dummy macro if no custom sources available)
ohair@494 233 CUSTOM_LATE_HOOK
ohair@425 234
erikj@458 235 # We're messing a bit with internal autoconf variables to put the config.status
erikj@458 236 # in the output directory instead of the current directory.
erikj@458 237 CONFIG_STATUS="$OUTPUT_ROOT/config.status"
ihse@797 238
erikj@458 239 # Create the actual output files. Now the main work of configure is done.
erikj@445 240 AC_OUTPUT
ihse@1320 241 CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK
erikj@445 242
ihse@839 243 # Try to move the config.log file to the output directory.
ihse@797 244 if test -e ./config.log; then
ihse@797 245 $MV -f ./config.log "$OUTPUT_ROOT/config.log" 2> /dev/null
ihse@797 246 fi
ihse@797 247
ohair@478 248 # Make the compare script executable
ohair@478 249 $CHMOD +x $OUTPUT_ROOT/compare.sh
ohair@478 250
erikj@445 251 # Finally output some useful information to the user
erikj@458 252 HELP_PRINT_SUMMARY_AND_WARNINGS

mercurial