common/autoconf/configure.ac

Thu, 05 Apr 2018 07:59:52 -0700

author
kevinw
date
Thu, 05 Apr 2018 07:59:52 -0700
changeset 2206
7ba4e17574e0
parent 1320
045eace96e6d
child 2212
dd97daafa80b
permissions
-rw-r--r--

8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
Reviewed-by: ihse, henryjen, erikj

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

mercurial