2014-02-24 11:16:58 +00:00
|
|
|
#
|
2015-03-09 09:39:16 +00:00
|
|
|
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
|
2014-02-24 11:16:58 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
|
|
# published by the Free Software Foundation. Oracle designates this
|
|
|
|
# particular file as subject to the "Classpath" exception as provided
|
|
|
|
# by Oracle in the LICENSE file that accompanied this code.
|
|
|
|
#
|
|
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
# accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License version
|
|
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
|
|
# questions.
|
|
|
|
#
|
|
|
|
|
2015-10-05 11:44:40 +00:00
|
|
|
# Reset the global CFLAGS/LDFLAGS variables and initialize them with the
|
|
|
|
# corresponding configure arguments instead
|
|
|
|
AC_DEFUN_ONCE([FLAGS_SETUP_USER_SUPPLIED_FLAGS],
|
|
|
|
[
|
|
|
|
if test "x$CFLAGS" != "x${ADDED_CFLAGS}"; then
|
|
|
|
AC_MSG_WARN([Ignoring CFLAGS($CFLAGS) found in environment. Use --with-extra-cflags])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$CXXFLAGS" != "x${ADDED_CXXFLAGS}"; then
|
|
|
|
AC_MSG_WARN([Ignoring CXXFLAGS($CXXFLAGS) found in environment. Use --with-extra-cxxflags])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$LDFLAGS" != "x${ADDED_LDFLAGS}"; then
|
|
|
|
AC_MSG_WARN([Ignoring LDFLAGS($LDFLAGS) found in environment. Use --with-extra-ldflags])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_ARG_WITH(extra-cflags, [AS_HELP_STRING([--with-extra-cflags],
|
|
|
|
[extra flags to be used when compiling jdk c-files])])
|
|
|
|
|
|
|
|
AC_ARG_WITH(extra-cxxflags, [AS_HELP_STRING([--with-extra-cxxflags],
|
|
|
|
[extra flags to be used when compiling jdk c++-files])])
|
|
|
|
|
|
|
|
AC_ARG_WITH(extra-ldflags, [AS_HELP_STRING([--with-extra-ldflags],
|
|
|
|
[extra flags to be used when linking jdk])])
|
|
|
|
|
|
|
|
EXTRA_CFLAGS="$with_extra_cflags"
|
|
|
|
EXTRA_CXXFLAGS="$with_extra_cxxflags"
|
|
|
|
EXTRA_LDFLAGS="$with_extra_ldflags"
|
|
|
|
|
|
|
|
# Hotspot needs these set in their legacy form
|
|
|
|
LEGACY_EXTRA_CFLAGS="$LEGACY_EXTRA_CFLAGS $EXTRA_CFLAGS"
|
|
|
|
LEGACY_EXTRA_CXXFLAGS="$LEGACY_EXTRA_CXXFLAGS $EXTRA_CXXFLAGS"
|
|
|
|
LEGACY_EXTRA_LDFLAGS="$LEGACY_EXTRA_LDFLAGS $EXTRA_LDFLAGS"
|
|
|
|
|
|
|
|
AC_SUBST(LEGACY_EXTRA_CFLAGS)
|
|
|
|
AC_SUBST(LEGACY_EXTRA_CXXFLAGS)
|
|
|
|
AC_SUBST(LEGACY_EXTRA_LDFLAGS)
|
|
|
|
|
|
|
|
# The global CFLAGS and LDLAGS variables are used by configure tests and
|
|
|
|
# should include the extra parameters
|
|
|
|
CFLAGS="$EXTRA_CFLAGS"
|
|
|
|
CXXFLAGS="$EXTRA_CXXFLAGS"
|
|
|
|
LDFLAGS="$EXTRA_LDFLAGS"
|
|
|
|
CPPFLAGS=""
|
|
|
|
])
|
|
|
|
|
|
|
|
# Setup the sysroot flags and add them to global CFLAGS and LDFLAGS so
|
|
|
|
# that configure can use them while detecting compilers.
|
|
|
|
# TOOLCHAIN_TYPE is available here.
|
2015-10-29 16:11:55 +00:00
|
|
|
# Param 1 - Optional prefix to all variables. (e.g BUILD_)
|
|
|
|
AC_DEFUN([FLAGS_SETUP_SYSROOT_FLAGS],
|
2015-10-05 11:44:40 +00:00
|
|
|
[
|
2015-10-29 16:11:55 +00:00
|
|
|
if test "x[$]$1SYSROOT" != "x"; then
|
2015-10-05 11:44:40 +00:00
|
|
|
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xsolaris; then
|
|
|
|
# Solaris Studio does not have a concept of sysroot. Instead we must
|
|
|
|
# make sure the default include and lib dirs are appended to each
|
|
|
|
# compile and link command line.
|
2015-10-29 16:11:55 +00:00
|
|
|
$1SYSROOT_CFLAGS="-I[$]$1SYSROOT/usr/include"
|
|
|
|
$1SYSROOT_LDFLAGS="-L[$]$1SYSROOT/usr/lib$OPENJDK_TARGET_CPU_ISADIR \
|
|
|
|
-L[$]$1SYSROOT/lib$OPENJDK_TARGET_CPU_ISADIR \
|
|
|
|
-L[$]$1SYSROOT/usr/ccs/lib$OPENJDK_TARGET_CPU_ISADIR"
|
2015-10-05 11:44:40 +00:00
|
|
|
fi
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xgcc; then
|
2015-10-29 16:11:55 +00:00
|
|
|
$1SYSROOT_CFLAGS="--sysroot=[$]$1SYSROOT"
|
|
|
|
$1SYSROOT_LDFLAGS="--sysroot=[$]$1SYSROOT"
|
2015-10-05 11:44:40 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xclang; then
|
2015-10-29 16:11:55 +00:00
|
|
|
$1SYSROOT_CFLAGS="-isysroot [$]$1SYSROOT"
|
|
|
|
$1SYSROOT_LDFLAGS="-isysroot [$]$1SYSROOT"
|
2015-10-05 11:44:40 +00:00
|
|
|
fi
|
|
|
|
# Propagate the sysroot args to hotspot
|
2015-10-29 16:11:55 +00:00
|
|
|
$1LEGACY_EXTRA_CFLAGS="[$]$1LEGACY_EXTRA_CFLAGS [$]$1SYSROOT_CFLAGS"
|
|
|
|
$1LEGACY_EXTRA_CXXFLAGS="[$]$1LEGACY_EXTRA_CXXFLAGS [$]$1SYSROOT_CFLAGS"
|
|
|
|
$1LEGACY_EXTRA_LDFLAGS="[$]$1LEGACY_EXTRA_LDFLAGS [$]$1SYSROOT_LDFLAGS"
|
2015-10-05 11:44:40 +00:00
|
|
|
# The global CFLAGS and LDFLAGS variables need these for configure to function
|
2015-10-29 16:11:55 +00:00
|
|
|
$1CFLAGS="[$]$1CFLAGS [$]$1SYSROOT_CFLAGS"
|
|
|
|
$1CPPFLAGS="[$]$1CPPFLAGS [$]$1SYSROOT_CFLAGS"
|
|
|
|
$1CXXFLAGS="[$]$1CXXFLAGS [$]$1SYSROOT_CFLAGS"
|
|
|
|
$1LDFLAGS="[$]$1LDFLAGS [$]$1SYSROOT_LDFLAGS"
|
2015-10-05 11:44:40 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
# We also need -iframework<path>/System/Library/Frameworks
|
2015-10-29 16:11:55 +00:00
|
|
|
$1SYSROOT_CFLAGS="[$]$1SYSROOT_CFLAGS -iframework [$]$1SYSROOT/System/Library/Frameworks"
|
|
|
|
$1SYSROOT_LDFLAGS="[$]$1SYSROOT_LDFLAGS -iframework [$]$1SYSROOT/System/Library/Frameworks"
|
2015-10-05 11:44:40 +00:00
|
|
|
# These always need to be set, or we can't find the frameworks embedded in JavaVM.framework
|
|
|
|
# set this here so it doesn't have to be peppered throughout the forest
|
2015-10-29 16:11:55 +00:00
|
|
|
$1SYSROOT_CFLAGS="[$]$1SYSROOT_CFLAGS -F [$]$1SYSROOT/System/Library/Frameworks/JavaVM.framework/Frameworks"
|
|
|
|
$1SYSROOT_LDFLAGS="[$]$1SYSROOT_LDFLAGS -F [$]$1SYSROOT/System/Library/Frameworks/JavaVM.framework/Frameworks"
|
2015-10-05 11:44:40 +00:00
|
|
|
fi
|
|
|
|
|
2015-10-29 16:11:55 +00:00
|
|
|
AC_SUBST($1SYSROOT_CFLAGS)
|
|
|
|
AC_SUBST($1SYSROOT_LDFLAGS)
|
2015-10-05 11:44:40 +00:00
|
|
|
])
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_DEFUN_ONCE([FLAGS_SETUP_INIT_FLAGS],
|
|
|
|
[
|
2015-12-15 10:02:03 +00:00
|
|
|
# COMPILER_TARGET_BITS_FLAG : option for selecting 32- or 64-bit output
|
|
|
|
# COMPILER_COMMAND_FILE_FLAG : option for passing a command file to the compiler
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$TOOLCHAIN_TYPE" = xxlc; then
|
|
|
|
COMPILER_TARGET_BITS_FLAG="-q"
|
2015-12-15 10:02:03 +00:00
|
|
|
COMPILER_COMMAND_FILE_FLAG="-f"
|
2014-02-24 11:16:58 +00:00
|
|
|
else
|
|
|
|
COMPILER_TARGET_BITS_FLAG="-m"
|
2015-12-15 10:02:03 +00:00
|
|
|
COMPILER_COMMAND_FILE_FLAG="@"
|
2016-01-08 08:46:02 +00:00
|
|
|
|
|
|
|
# The solstudio linker does not support @-files.
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
|
|
|
COMPILER_COMMAND_FILE_FLAG=
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check if @file is supported by gcc
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
AC_MSG_CHECKING([if @file is supported by gcc])
|
|
|
|
# Extra emtpy "" to prevent ECHO from interpreting '--version' as argument
|
|
|
|
$ECHO "" "--version" > command.file
|
|
|
|
if $CXX @command.file 2>&AS_MESSAGE_LOG_FD >&AS_MESSAGE_LOG_FD; then
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
COMPILER_COMMAND_FILE_FLAG="@"
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
COMPILER_COMMAND_FILE_FLAG=
|
|
|
|
fi
|
|
|
|
rm -rf command.file
|
|
|
|
fi
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
AC_SUBST(COMPILER_TARGET_BITS_FLAG)
|
2015-12-15 10:02:03 +00:00
|
|
|
AC_SUBST(COMPILER_COMMAND_FILE_FLAG)
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
# FIXME: figure out if we should select AR flags depending on OS or toolchain.
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
ARFLAGS="-r"
|
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xaix; then
|
|
|
|
ARFLAGS="-X64"
|
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
|
|
|
# lib.exe is used as AR to create static libraries.
|
|
|
|
ARFLAGS="-nologo -NODEFAULTLIB:MSVCRT"
|
|
|
|
else
|
|
|
|
ARFLAGS=""
|
|
|
|
fi
|
|
|
|
AC_SUBST(ARFLAGS)
|
|
|
|
|
|
|
|
## Setup strip.
|
|
|
|
# FIXME: should this really be per platform, or should it be per toolchain type?
|
|
|
|
# strip is not provided by clang or solstudio; so guessing platform makes most sense.
|
|
|
|
# FIXME: we should really only export STRIPFLAGS from here, not POST_STRIP_CMD.
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
|
|
|
STRIPFLAGS="-g"
|
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xsolaris; then
|
|
|
|
STRIPFLAGS="-x"
|
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
STRIPFLAGS="-S"
|
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xaix; then
|
|
|
|
STRIPFLAGS="-X32_64"
|
|
|
|
fi
|
|
|
|
|
2015-09-28 13:51:29 +00:00
|
|
|
AC_SUBST(STRIPFLAGS)
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
|
|
|
CC_OUT_OPTION=-Fo
|
|
|
|
EXE_OUT_OPTION=-out:
|
|
|
|
LD_OUT_OPTION=-out:
|
|
|
|
AR_OUT_OPTION=-out:
|
|
|
|
else
|
|
|
|
# The option used to specify the target .o,.a or .so file.
|
|
|
|
# When compiling, how to specify the to be created object file.
|
|
|
|
CC_OUT_OPTION='-o$(SPACE)'
|
|
|
|
# When linking, how to specify the to be created executable.
|
|
|
|
EXE_OUT_OPTION='-o$(SPACE)'
|
|
|
|
# When linking, how to specify the to be created dynamically linkable library.
|
|
|
|
LD_OUT_OPTION='-o$(SPACE)'
|
|
|
|
# When archiving, how to specify the to be create static archive for object files.
|
|
|
|
AR_OUT_OPTION='rcs$(SPACE)'
|
|
|
|
fi
|
|
|
|
AC_SUBST(CC_OUT_OPTION)
|
|
|
|
AC_SUBST(EXE_OUT_OPTION)
|
|
|
|
AC_SUBST(LD_OUT_OPTION)
|
|
|
|
AC_SUBST(AR_OUT_OPTION)
|
|
|
|
|
|
|
|
# On Windows, we need to set RC flags.
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
2014-11-26 14:14:14 +00:00
|
|
|
RC_FLAGS="-nologo -l0x409"
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$VARIANT" = xOPT; then
|
2014-11-26 14:14:14 +00:00
|
|
|
RC_FLAGS="$RC_FLAGS -DNDEBUG"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# The version variables used to create RC_FLAGS may be overridden
|
|
|
|
# in a custom configure script, or possibly the command line.
|
|
|
|
# Let those variables be expanded at make time in spec.gmk.
|
|
|
|
# The \$ are escaped to the shell, and the $(...) variables
|
|
|
|
# are evaluated by make.
|
|
|
|
RC_FLAGS="$RC_FLAGS \
|
2015-06-10 22:21:56 +00:00
|
|
|
-D\"JDK_VERSION_STRING=\$(VERSION_STRING)\" \
|
2014-11-26 14:14:14 +00:00
|
|
|
-D\"JDK_COMPANY=\$(COMPANY_NAME)\" \
|
|
|
|
-D\"JDK_COMPONENT=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) binary\" \
|
2015-09-10 07:04:42 +00:00
|
|
|
-D\"JDK_VER=\$(VERSION_NUMBER)\" \
|
2014-11-26 14:14:14 +00:00
|
|
|
-D\"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\" \
|
2015-06-10 22:21:56 +00:00
|
|
|
-D\"JDK_NAME=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) \$(VERSION_MAJOR)\" \
|
|
|
|
-D\"JDK_FVER=\$(subst .,\$(COMMA),\$(VERSION_NUMBER_FOUR_POSITIONS))\""
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
AC_SUBST(RC_FLAGS)
|
|
|
|
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
2014-06-12 23:33:32 +00:00
|
|
|
# silence copyright notice and other headers.
|
|
|
|
COMMON_CCXXFLAGS="$COMMON_CCXXFLAGS -nologo"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_FOR_LIBS],
|
|
|
|
[
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# How to compile shared libraries.
|
|
|
|
#
|
|
|
|
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
PICFLAG="-fPIC"
|
|
|
|
C_FLAG_REORDER=''
|
|
|
|
CXX_FLAG_REORDER=''
|
|
|
|
|
2014-02-26 07:38:52 +00:00
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
# Linking is different on MacOSX
|
2015-10-19 17:21:27 +00:00
|
|
|
if test "x$STATIC_BUILD" = xtrue; then
|
|
|
|
SHARED_LIBRARY_FLAGS ='-undefined dynamic_lookup'
|
|
|
|
else
|
|
|
|
SHARED_LIBRARY_FLAGS="-dynamiclib -compatibility_version 1.0.0 -current_version 1.0.0 $PICFLAG"
|
|
|
|
fi
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,@loader_path/.'
|
2014-02-26 07:38:52 +00:00
|
|
|
SET_SHARED_LIBRARY_ORIGIN="$SET_EXECUTABLE_ORIGIN"
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_SHARED_LIBRARY_NAME='-Wl,-install_name,@rpath/[$]1'
|
2014-02-26 07:38:52 +00:00
|
|
|
SET_SHARED_LIBRARY_MAPFILE=''
|
|
|
|
else
|
|
|
|
# Default works for linux, might work on other platforms as well.
|
|
|
|
SHARED_LIBRARY_FLAGS='-shared'
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,\$$$$ORIGIN[$]1'
|
|
|
|
SET_SHARED_LIBRARY_ORIGIN="-Wl,-z,origin $SET_EXECUTABLE_ORIGIN"
|
|
|
|
SET_SHARED_LIBRARY_NAME='-Wl,-soname=[$]1'
|
|
|
|
SET_SHARED_LIBRARY_MAPFILE='-Wl,-version-script=[$]1'
|
2014-02-26 07:38:52 +00:00
|
|
|
fi
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xclang; then
|
|
|
|
C_FLAG_REORDER=''
|
|
|
|
CXX_FLAG_REORDER=''
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
# Linking is different on MacOSX
|
2015-12-15 10:02:03 +00:00
|
|
|
PICFLAG=''
|
2014-02-24 11:16:58 +00:00
|
|
|
SHARED_LIBRARY_FLAGS="-dynamiclib -compatibility_version 1.0.0 -current_version 1.0.0 $PICFLAG"
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,@loader_path/.'
|
2014-02-24 11:16:58 +00:00
|
|
|
SET_SHARED_LIBRARY_ORIGIN="$SET_EXECUTABLE_ORIGIN"
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_SHARED_LIBRARY_NAME='-Wl,-install_name,@rpath/[$]1'
|
2014-02-24 11:16:58 +00:00
|
|
|
SET_SHARED_LIBRARY_MAPFILE=''
|
|
|
|
else
|
|
|
|
# Default works for linux, might work on other platforms as well.
|
2015-12-15 10:02:03 +00:00
|
|
|
PICFLAG='-fPIC'
|
2014-02-24 11:16:58 +00:00
|
|
|
SHARED_LIBRARY_FLAGS='-shared'
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,\$$$$ORIGIN[$]1'
|
|
|
|
SET_SHARED_LIBRARY_ORIGIN="-Wl,-z,origin $SET_EXECUTABLE_ORIGIN"
|
|
|
|
SET_SHARED_LIBRARY_NAME='-Wl,-soname=[$]1'
|
|
|
|
SET_SHARED_LIBRARY_MAPFILE='-Wl,-version-script=[$]1'
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
|
|
|
PICFLAG="-KPIC"
|
|
|
|
C_FLAG_REORDER='-xF'
|
|
|
|
CXX_FLAG_REORDER='-xF'
|
|
|
|
SHARED_LIBRARY_FLAGS="-G"
|
|
|
|
SET_EXECUTABLE_ORIGIN='-R\$$$$ORIGIN[$]1'
|
|
|
|
SET_SHARED_LIBRARY_ORIGIN="$SET_EXECUTABLE_ORIGIN"
|
2015-12-15 10:02:03 +00:00
|
|
|
SET_SHARED_LIBRARY_NAME='-h [$]1'
|
2014-02-24 11:16:58 +00:00
|
|
|
SET_SHARED_LIBRARY_MAPFILE='-M[$]1'
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
|
|
|
PICFLAG="-qpic=large"
|
|
|
|
C_FLAG_REORDER=''
|
|
|
|
CXX_FLAG_REORDER=''
|
|
|
|
SHARED_LIBRARY_FLAGS="-qmkshrobj"
|
|
|
|
SET_EXECUTABLE_ORIGIN=""
|
|
|
|
SET_SHARED_LIBRARY_ORIGIN=''
|
|
|
|
SET_SHARED_LIBRARY_NAME=''
|
|
|
|
SET_SHARED_LIBRARY_MAPFILE=''
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
|
|
|
PICFLAG=""
|
|
|
|
C_FLAG_REORDER=''
|
|
|
|
CXX_FLAG_REORDER=''
|
2015-12-15 10:02:03 +00:00
|
|
|
SHARED_LIBRARY_FLAGS="-dll"
|
2014-02-24 11:16:58 +00:00
|
|
|
SET_EXECUTABLE_ORIGIN=''
|
|
|
|
SET_SHARED_LIBRARY_ORIGIN=''
|
|
|
|
SET_SHARED_LIBRARY_NAME=''
|
|
|
|
SET_SHARED_LIBRARY_MAPFILE=''
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(C_FLAG_REORDER)
|
|
|
|
AC_SUBST(CXX_FLAG_REORDER)
|
|
|
|
AC_SUBST(SET_EXECUTABLE_ORIGIN)
|
|
|
|
AC_SUBST(SET_SHARED_LIBRARY_ORIGIN)
|
|
|
|
AC_SUBST(SET_SHARED_LIBRARY_NAME)
|
|
|
|
AC_SUBST(SET_SHARED_LIBRARY_MAPFILE)
|
2015-12-15 10:02:03 +00:00
|
|
|
AC_SUBST(SHARED_LIBRARY_FLAGS)
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xsolaris; then
|
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -D__solaris__"
|
|
|
|
CXXFLAGS_JDK="${CXXFLAGS_JDK} -D__solaris__"
|
|
|
|
CFLAGS_JDKLIB_EXTRA='-xstrconst'
|
|
|
|
fi
|
|
|
|
# The (cross) compiler is now configured, we can now test capabilities
|
|
|
|
# of the target platform.
|
|
|
|
])
|
|
|
|
|
|
|
|
# Documentation on common flags used for solstudio in HIGHEST.
|
|
|
|
#
|
|
|
|
# WARNING: Use of OPTIMIZATION_LEVEL=HIGHEST in your Makefile needs to be
|
|
|
|
# done with care, there are some assumptions below that need to
|
|
|
|
# be understood about the use of pointers, and IEEE behavior.
|
|
|
|
#
|
|
|
|
# -fns: Use non-standard floating point mode (not IEEE 754)
|
|
|
|
# -fsimple: Do some simplification of floating point arithmetic (not IEEE 754)
|
|
|
|
# -fsingle: Use single precision floating point with 'float'
|
|
|
|
# -xalias_level=basic: Assume memory references via basic pointer types do not alias
|
|
|
|
# (Source with excessing pointer casting and data access with mixed
|
|
|
|
# pointer types are not recommended)
|
|
|
|
# -xbuiltin=%all: Use intrinsic or inline versions for math/std functions
|
|
|
|
# (If you expect perfect errno behavior, do not use this)
|
|
|
|
# -xdepend: Loop data dependency optimizations (need -xO3 or higher)
|
|
|
|
# -xrestrict: Pointer parameters to functions do not overlap
|
|
|
|
# (Similar to -xalias_level=basic usage, but less obvious sometimes.
|
|
|
|
# If you pass in multiple pointers to the same data, do not use this)
|
|
|
|
# -xlibmil: Inline some library routines
|
|
|
|
# (If you expect perfect errno behavior, do not use this)
|
|
|
|
# -xlibmopt: Use optimized math routines (CURRENTLY DISABLED)
|
|
|
|
# (If you expect perfect errno behavior, do not use this)
|
|
|
|
# Can cause undefined external on Solaris 8 X86 on __sincos, removing for now
|
|
|
|
|
|
|
|
# FIXME: this will never happen since sparc != sparcv9, ie 32 bit, which we don't build anymore.
|
|
|
|
# Bug?
|
|
|
|
#if test "x$OPENJDK_TARGET_CPU" = xsparc; then
|
|
|
|
# CFLAGS_JDK="${CFLAGS_JDK} -xmemalign=4s"
|
|
|
|
# CXXFLAGS_JDK="${CXXFLAGS_JDK} -xmemalign=4s"
|
|
|
|
#fi
|
|
|
|
|
|
|
|
AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_FOR_OPTIMIZATION],
|
|
|
|
[
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Setup the opt flags for different compilers
|
|
|
|
# and different operating systems.
|
|
|
|
#
|
|
|
|
|
|
|
|
# FIXME: this was indirectly the old default, but just inherited.
|
|
|
|
# if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
|
|
|
# C_FLAG_DEPS="-MMD -MF"
|
|
|
|
# fi
|
|
|
|
|
|
|
|
# Generate make dependency files
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
C_FLAG_DEPS="-MMD -MF"
|
2014-02-26 07:38:52 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xclang; then
|
|
|
|
C_FLAG_DEPS="-MMD -MF"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
|
|
|
C_FLAG_DEPS="-xMMD -xMF"
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
|
|
|
C_FLAG_DEPS="-qmakedep=gcc -MF"
|
|
|
|
fi
|
|
|
|
CXX_FLAG_DEPS="$C_FLAG_DEPS"
|
|
|
|
AC_SUBST(C_FLAG_DEPS)
|
|
|
|
AC_SUBST(CXX_FLAG_DEPS)
|
|
|
|
|
|
|
|
# Debug symbols
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64" && test "x$DEBUG_LEVEL" = "xfastdebug"; then
|
2014-06-12 23:33:32 +00:00
|
|
|
# reduce from default "-g2" option to save space
|
2014-02-24 11:16:58 +00:00
|
|
|
CFLAGS_DEBUG_SYMBOLS="-g1"
|
|
|
|
CXXFLAGS_DEBUG_SYMBOLS="-g1"
|
|
|
|
else
|
|
|
|
CFLAGS_DEBUG_SYMBOLS="-g"
|
|
|
|
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
|
|
|
fi
|
2014-02-26 07:38:52 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xclang; then
|
|
|
|
CFLAGS_DEBUG_SYMBOLS="-g"
|
|
|
|
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
|
|
|
CFLAGS_DEBUG_SYMBOLS="-g -xs"
|
2014-06-12 23:33:32 +00:00
|
|
|
# FIXME: likely a bug, this disables debug symbols rather than enables them
|
2014-02-24 11:16:58 +00:00
|
|
|
CXXFLAGS_DEBUG_SYMBOLS="-g0 -xs"
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
|
|
|
CFLAGS_DEBUG_SYMBOLS="-g"
|
|
|
|
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
|
|
|
fi
|
|
|
|
AC_SUBST(CFLAGS_DEBUG_SYMBOLS)
|
|
|
|
AC_SUBST(CXXFLAGS_DEBUG_SYMBOLS)
|
|
|
|
|
2014-06-12 23:33:32 +00:00
|
|
|
# bounds, memory and behavior checking options
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
case $DEBUG_LEVEL in
|
|
|
|
release )
|
|
|
|
# no adjustment
|
|
|
|
;;
|
|
|
|
fastdebug )
|
2014-08-13 19:39:05 +00:00
|
|
|
# no adjustment
|
2014-06-12 23:33:32 +00:00
|
|
|
;;
|
|
|
|
slowdebug )
|
2015-06-03 13:20:25 +00:00
|
|
|
# Add runtime stack smashing and undefined behavior checks.
|
|
|
|
# Not all versions of gcc support -fstack-protector
|
|
|
|
STACK_PROTECTOR_CFLAG="-fstack-protector-all"
|
|
|
|
FLAGS_COMPILER_CHECK_ARGUMENTS([$STACK_PROTECTOR_CFLAG], [], [STACK_PROTECTOR_CFLAG=""])
|
|
|
|
|
|
|
|
CFLAGS_DEBUG_OPTIONS="$STACK_PROTECTOR_CFLAG --param ssp-buffer-size=1"
|
|
|
|
CXXFLAGS_DEBUG_OPTIONS="$STACK_PROTECTOR_CFLAG --param ssp-buffer-size=1"
|
2014-06-12 23:33:32 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
# Optimization levels
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
2014-03-05 09:21:38 +00:00
|
|
|
CC_HIGHEST="$CC_HIGHEST -fns -fsimple -fsingle -xbuiltin=%all -xdepend -xrestrict -xlibmil"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86"; then
|
|
|
|
# FIXME: seems we always set -xregs=no%frameptr; put it elsewhere more global?
|
2014-03-05 09:21:38 +00:00
|
|
|
C_O_FLAG_HIGHEST="-xO4 -Wu,-O4~yz $CC_HIGHEST -xalias_level=basic -xregs=no%frameptr"
|
2014-02-24 11:16:58 +00:00
|
|
|
C_O_FLAG_HI="-xO4 -Wu,-O4~yz -xregs=no%frameptr"
|
|
|
|
C_O_FLAG_NORM="-xO2 -Wu,-O2~yz -xregs=no%frameptr"
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_DEBUG="-xregs=no%frameptr"
|
2014-02-24 11:16:58 +00:00
|
|
|
C_O_FLAG_NONE="-xregs=no%frameptr"
|
|
|
|
CXX_O_FLAG_HIGHEST="-xO4 -Qoption ube -O4~yz $CC_HIGHEST -xregs=no%frameptr"
|
|
|
|
CXX_O_FLAG_HI="-xO4 -Qoption ube -O4~yz -xregs=no%frameptr"
|
|
|
|
CXX_O_FLAG_NORM="-xO2 -Qoption ube -O2~yz -xregs=no%frameptr"
|
2014-06-12 23:33:32 +00:00
|
|
|
CXX_O_FLAG_DEBUG="-xregs=no%frameptr"
|
2014-02-24 11:16:58 +00:00
|
|
|
CXX_O_FLAG_NONE="-xregs=no%frameptr"
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_BITS" = "x32"; then
|
|
|
|
C_O_FLAG_HIGHEST="$C_O_FLAG_HIGHEST -xchip=pentium"
|
|
|
|
CXX_O_FLAG_HIGHEST="$CXX_O_FLAG_HIGHEST -xchip=pentium"
|
|
|
|
fi
|
|
|
|
elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then
|
2014-03-05 09:21:38 +00:00
|
|
|
C_O_FLAG_HIGHEST="-xO4 -Wc,-Qrm-s -Wc,-Qiselect-T0 $CC_HIGHEST -xalias_level=basic -xprefetch=auto,explicit -xchip=ultra"
|
2014-02-24 11:16:58 +00:00
|
|
|
C_O_FLAG_HI="-xO4 -Wc,-Qrm-s -Wc,-Qiselect-T0"
|
|
|
|
C_O_FLAG_NORM="-xO2 -Wc,-Qrm-s -Wc,-Qiselect-T0"
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_DEBUG=""
|
2014-02-24 11:16:58 +00:00
|
|
|
C_O_FLAG_NONE=""
|
|
|
|
CXX_O_FLAG_HIGHEST="-xO4 -Qoption cg -Qrm-s -Qoption cg -Qiselect-T0 $CC_HIGHEST -xprefetch=auto,explicit -xchip=ultra"
|
|
|
|
CXX_O_FLAG_HI="-xO4 -Qoption cg -Qrm-s -Qoption cg -Qiselect-T0"
|
|
|
|
CXX_O_FLAG_NORM="-xO2 -Qoption cg -Qrm-s -Qoption cg -Qiselect-T0"
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_DEBUG=""
|
2014-02-24 11:16:58 +00:00
|
|
|
CXX_O_FLAG_NONE=""
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# The remaining toolchains share opt flags between CC and CXX;
|
|
|
|
# setup for C and duplicate afterwards.
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
# On MacOSX we optimize for size, something
|
|
|
|
# we should do for all platforms?
|
|
|
|
C_O_FLAG_HIGHEST="-Os"
|
|
|
|
C_O_FLAG_HI="-Os"
|
|
|
|
C_O_FLAG_NORM="-Os"
|
|
|
|
else
|
|
|
|
C_O_FLAG_HIGHEST="-O3"
|
|
|
|
C_O_FLAG_HI="-O3"
|
|
|
|
C_O_FLAG_NORM="-O2"
|
|
|
|
fi
|
2014-07-09 21:55:52 +00:00
|
|
|
C_O_FLAG_DEBUG="-O0"
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_NONE="-O0"
|
2014-02-26 07:38:52 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xclang; then
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
|
|
|
# On MacOSX we optimize for size, something
|
|
|
|
# we should do for all platforms?
|
|
|
|
C_O_FLAG_HIGHEST="-Os"
|
|
|
|
C_O_FLAG_HI="-Os"
|
|
|
|
C_O_FLAG_NORM="-Os"
|
|
|
|
else
|
|
|
|
C_O_FLAG_HIGHEST="-O3"
|
|
|
|
C_O_FLAG_HI="-O3"
|
|
|
|
C_O_FLAG_NORM="-O2"
|
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_DEBUG="-O0"
|
|
|
|
C_O_FLAG_NONE="-O0"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
|
|
|
C_O_FLAG_HIGHEST="-O3"
|
|
|
|
C_O_FLAG_HI="-O3 -qstrict"
|
|
|
|
C_O_FLAG_NORM="-O2"
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_DEBUG="-qnoopt"
|
|
|
|
C_O_FLAG_NONE="-qnoop"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
|
|
|
C_O_FLAG_HIGHEST="-O2"
|
|
|
|
C_O_FLAG_HI="-O1"
|
|
|
|
C_O_FLAG_NORM="-O1"
|
2014-06-12 23:33:32 +00:00
|
|
|
C_O_FLAG_DEBUG="-Od"
|
2014-02-24 11:16:58 +00:00
|
|
|
C_O_FLAG_NONE="-Od"
|
|
|
|
fi
|
|
|
|
CXX_O_FLAG_HIGHEST="$C_O_FLAG_HIGHEST"
|
|
|
|
CXX_O_FLAG_HI="$C_O_FLAG_HI"
|
|
|
|
CXX_O_FLAG_NORM="$C_O_FLAG_NORM"
|
2014-06-12 23:33:32 +00:00
|
|
|
CXX_O_FLAG_DEBUG="$C_O_FLAG_DEBUG"
|
2014-02-24 11:16:58 +00:00
|
|
|
CXX_O_FLAG_NONE="$C_O_FLAG_NONE"
|
|
|
|
fi
|
|
|
|
|
2014-06-12 23:33:32 +00:00
|
|
|
# Adjust optimization flags according to debug level.
|
|
|
|
case $DEBUG_LEVEL in
|
|
|
|
release )
|
|
|
|
# no adjustment
|
|
|
|
;;
|
|
|
|
fastdebug )
|
|
|
|
# Not quite so much optimization
|
|
|
|
C_O_FLAG_HI="$C_O_FLAG_NORM"
|
|
|
|
CXX_O_FLAG_HI="$CXX_O_FLAG_NORM"
|
|
|
|
;;
|
|
|
|
slowdebug )
|
|
|
|
# Disable optimization
|
|
|
|
C_O_FLAG_HIGHEST="$C_O_FLAG_DEBUG"
|
|
|
|
C_O_FLAG_HI="$C_O_FLAG_DEBUG"
|
|
|
|
C_O_FLAG_NORM="$C_O_FLAG_DEBUG"
|
|
|
|
CXX_O_FLAG_HIGHEST="$CXX_O_FLAG_DEBUG"
|
|
|
|
CXX_O_FLAG_HI="$CXX_O_FLAG_DEBUG"
|
|
|
|
CXX_O_FLAG_NORM="$CXX_O_FLAG_DEBUG"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_SUBST(C_O_FLAG_HIGHEST)
|
|
|
|
AC_SUBST(C_O_FLAG_HI)
|
|
|
|
AC_SUBST(C_O_FLAG_NORM)
|
2014-06-12 23:33:32 +00:00
|
|
|
AC_SUBST(C_O_FLAG_DEBUG)
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_SUBST(C_O_FLAG_NONE)
|
|
|
|
AC_SUBST(CXX_O_FLAG_HIGHEST)
|
|
|
|
AC_SUBST(CXX_O_FLAG_HI)
|
|
|
|
AC_SUBST(CXX_O_FLAG_NORM)
|
2014-06-12 23:33:32 +00:00
|
|
|
AC_SUBST(CXX_O_FLAG_DEBUG)
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_SUBST(CXX_O_FLAG_NONE)
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_FOR_JDK],
|
|
|
|
[
|
|
|
|
# Special extras...
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then
|
|
|
|
CFLAGS_JDKLIB_EXTRA="${CFLAGS_JDKLIB_EXTRA} -xregs=no%appl"
|
|
|
|
CXXFLAGS_JDKLIB_EXTRA="${CXXFLAGS_JDKLIB_EXTRA} -xregs=no%appl"
|
|
|
|
fi
|
2015-03-09 09:39:16 +00:00
|
|
|
CFLAGS_JDKLIB_EXTRA="${CFLAGS_JDKLIB_EXTRA} -errtags=yes -errfmt"
|
|
|
|
CXXFLAGS_JDKLIB_EXTRA="${CXXFLAGS_JDKLIB_EXTRA} -errtags=yes -errfmt"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
2015-03-19 14:28:22 +00:00
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -qchars=signed -qfullpath -qsaveopt"
|
|
|
|
CXXFLAGS_JDK="${CXXFLAGS_JDK} -qchars=signed -qfullpath -qsaveopt"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
2015-10-05 11:44:40 +00:00
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} $EXTRA_CFLAGS"
|
|
|
|
CXXFLAGS_JDK="${CXXFLAGS_JDK} $EXTRA_CXXFLAGS"
|
|
|
|
LDFLAGS_JDK="${LDFLAGS_JDK} $EXTRA_LDFLAGS"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Now setup the CFLAGS and LDFLAGS for the JDK build.
|
|
|
|
# Later we will also have CFLAGS and LDFLAGS for the hotspot subrepo build.
|
|
|
|
#
|
|
|
|
|
2014-06-12 23:33:32 +00:00
|
|
|
# Setup compiler/platform specific flags into
|
|
|
|
# CFLAGS_JDK - C Compiler flags
|
|
|
|
# CXXFLAGS_JDK - C++ Compiler flags
|
|
|
|
# COMMON_CCXXFLAGS_JDK - common to C and C++
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$TOOLCHAIN_TYPE" = xgcc; then
|
2015-05-12 07:08:03 +00:00
|
|
|
if test "x$OPENJDK_TARGET_CPU" = xx86; then
|
|
|
|
# Force compatibility with i586 on 32 bit intel platforms.
|
|
|
|
COMMON_CCXXFLAGS="${COMMON_CCXXFLAGS} -march=i586"
|
|
|
|
fi
|
2015-03-09 09:39:16 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS $COMMON_CCXXFLAGS_JDK -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wformat=2 \
|
2014-02-24 11:16:58 +00:00
|
|
|
-pipe -D_GNU_SOURCE -D_REENTRANT -D_LARGEFILE64_SOURCE"
|
|
|
|
case $OPENJDK_TARGET_CPU_ARCH in
|
|
|
|
arm )
|
|
|
|
# on arm we don't prevent gcc to omit frame pointer but do prevent strict aliasing
|
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -fno-strict-aliasing"
|
|
|
|
;;
|
|
|
|
ppc )
|
2014-04-22 00:17:00 +00:00
|
|
|
# on ppc we don't prevent gcc to omit frame pointer but do prevent strict aliasing
|
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -fno-strict-aliasing"
|
2014-02-24 11:16:58 +00:00
|
|
|
;;
|
|
|
|
* )
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -fno-omit-frame-pointer"
|
2014-02-24 11:16:58 +00:00
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -fno-strict-aliasing"
|
|
|
|
;;
|
|
|
|
esac
|
2015-12-15 10:02:03 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xclang; then
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
|
|
|
if test "x$OPENJDK_TARGET_CPU" = xx86; then
|
|
|
|
# Force compatibility with i586 on 32 bit intel platforms.
|
|
|
|
COMMON_CCXXFLAGS="${COMMON_CCXXFLAGS} -march=i586"
|
|
|
|
fi
|
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS $COMMON_CCXXFLAGS_JDK -Wall -Wextra -Wno-unused -Wno-unused-parameter -Wformat=2 \
|
|
|
|
-pipe -D_GNU_SOURCE -D_REENTRANT -D_LARGEFILE64_SOURCE"
|
|
|
|
case $OPENJDK_TARGET_CPU_ARCH in
|
|
|
|
ppc )
|
|
|
|
# on ppc we don't prevent gcc to omit frame pointer but do prevent strict aliasing
|
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -fno-strict-aliasing"
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -fno-omit-frame-pointer"
|
|
|
|
CFLAGS_JDK="${CFLAGS_JDK} -fno-strict-aliasing"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS $COMMON_CCXXFLAGS_JDK -DTRACING -DMACRO_MEMSYS_OPS -DBREAKPTS"
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$OPENJDK_TARGET_CPU_ARCH" = xx86; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DcpuIntel -Di586 -D$OPENJDK_TARGET_CPU_LEGACY_LIB"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
CFLAGS_JDK="$CFLAGS_JDK -xc99=%none -xCC -errshort=tags -Xa -v -mt -W0,-noglobal"
|
|
|
|
CXXFLAGS_JDK="$CXXFLAGS_JDK -errtags=yes +w -mt -features=no%except -DCC_NOEX -norunpath -xnolib"
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
|
|
|
CFLAGS_JDK="$CFLAGS_JDK -D_GNU_SOURCE -D_REENTRANT -D_LARGEFILE64_SOURCE -DSTDC"
|
|
|
|
CXXFLAGS_JDK="$CXXFLAGS_JDK -D_GNU_SOURCE -D_REENTRANT -D_LARGEFILE64_SOURCE -DSTDC"
|
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
2015-01-15 15:36:24 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS $COMMON_CCXXFLAGS_JDK \
|
|
|
|
-Zi -MD -Zc:wchar_t- -W3 -wd4800 \
|
|
|
|
-DWIN32_LEAN_AND_MEAN \
|
|
|
|
-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE \
|
2015-05-26 08:43:56 +00:00
|
|
|
-D_WINSOCK_DEPRECATED_NO_WARNINGS \
|
2015-01-15 15:36:24 +00:00
|
|
|
-DWIN32 -DIAL"
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$OPENJDK_TARGET_CPU" = xx86_64; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_AMD64_ -Damd64"
|
2014-02-24 11:16:58 +00:00
|
|
|
else
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_X86_ -Dx86"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
2015-01-15 15:36:24 +00:00
|
|
|
# If building with Visual Studio 2010, we can still use _STATIC_CPPLIB to
|
|
|
|
# avoid bundling msvcpNNN.dll. Doesn't work with newer versions of visual
|
|
|
|
# studio.
|
|
|
|
if test "x$TOOLCHAIN_VERSION" = "x2010"; then
|
2015-02-05 13:55:30 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK \
|
2015-01-15 15:36:24 +00:00
|
|
|
-D_STATIC_CPPLIB -D_DISABLE_DEPRECATE_STATIC_CPPLIB"
|
|
|
|
fi
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# Adjust flags according to debug level.
|
|
|
|
case $DEBUG_LEVEL in
|
2014-06-12 23:33:32 +00:00
|
|
|
fastdebug | slowdebug )
|
|
|
|
CFLAGS_JDK="$CFLAGS_JDK $CFLAGS_DEBUG_SYMBOLS $CFLAGS_DEBUG_OPTIONS"
|
|
|
|
CXXFLAGS_JDK="$CXXFLAGS_JDK $CXXFLAGS_DEBUG_SYMBOLS $CXXFLAGS_DEBUG_OPTIONS"
|
2014-02-24 11:16:58 +00:00
|
|
|
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
|
|
|
;;
|
2014-06-12 23:33:32 +00:00
|
|
|
release )
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
AC_MSG_ERROR([Unrecognized \$DEBUG_LEVEL: $DEBUG_LEVEL])
|
2014-02-24 11:16:58 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Setup LP64
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK $ADD_LP64"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
# Set some common defines. These works for all compilers, but assume
|
|
|
|
# -D is universally accepted.
|
|
|
|
|
|
|
|
# Setup endianness
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_ENDIAN" = xlittle; then
|
|
|
|
# The macro _LITTLE_ENDIAN needs to be defined the same to avoid the
|
|
|
|
# Sun C compiler warning message: warning: macro redefined: _LITTLE_ENDIAN
|
|
|
|
# (The Solaris X86 system defines this in file /usr/include/sys/isa_defs.h).
|
|
|
|
# Note: -Dmacro is the same as #define macro 1
|
|
|
|
# -Dmacro= is the same as #define macro
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xsolaris; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_LITTLE_ENDIAN="
|
2014-02-24 11:16:58 +00:00
|
|
|
else
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_LITTLE_ENDIAN"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
else
|
2014-03-28 13:59:56 +00:00
|
|
|
# Same goes for _BIG_ENDIAN. Do we really need to set *ENDIAN on Solaris if they
|
|
|
|
# are defined in the system?
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xsolaris; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_BIG_ENDIAN="
|
2014-03-28 13:59:56 +00:00
|
|
|
else
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_BIG_ENDIAN"
|
2014-03-28 13:59:56 +00:00
|
|
|
fi
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
# Setup target OS define. Use OS target name but in upper case.
|
|
|
|
OPENJDK_TARGET_OS_UPPERCASE=`$ECHO $OPENJDK_TARGET_OS | $TR 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D$OPENJDK_TARGET_OS_UPPERCASE"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
# Setup target CPU
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DARCH='\"$OPENJDK_TARGET_CPU_LEGACY\"' -D$OPENJDK_TARGET_CPU_LEGACY"
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
# Setup debug/release defines
|
|
|
|
if test "x$DEBUG_LEVEL" = xrelease; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DNDEBUG"
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$OPENJDK_TARGET_OS" = xsolaris; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DTRIMMED"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
else
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DDEBUG"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Set some additional per-OS defines.
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_ALLBSD_SOURCE -D_DARWIN_UNLIMITED_SELECT"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xaix; then
|
|
|
|
# FIXME: PPC64 should not be here.
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DPPC64"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xbsd; then
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -D_ALLBSD_SOURCE"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Additional macosx handling
|
|
|
|
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
|
2014-06-18 19:52:13 +00:00
|
|
|
# Setting these parameters makes it an error to link to macosx APIs that are
|
|
|
|
# newer than the given OS version and makes the linked binaries compatible
|
|
|
|
# even if built on a newer version of the OS.
|
|
|
|
# The expected format is X.Y.Z
|
|
|
|
MACOSX_VERSION_MIN=10.7.0
|
|
|
|
AC_SUBST(MACOSX_VERSION_MIN)
|
|
|
|
|
|
|
|
# The macro takes the version with no dots, ex: 1070
|
|
|
|
# Let the flags variables get resolved in make for easier override on make
|
|
|
|
# command line.
|
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK -DMAC_OS_X_VERSION_MAX_ALLOWED=\$(subst .,,\$(MACOSX_VERSION_MIN)) -mmacosx-version-min=\$(MACOSX_VERSION_MIN)"
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK -mmacosx-version-min=\$(MACOSX_VERSION_MIN)"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Setup some hard coded includes
|
2014-06-12 23:33:32 +00:00
|
|
|
COMMON_CCXXFLAGS_JDK="$COMMON_CCXXFLAGS_JDK \
|
2014-08-17 14:51:37 +00:00
|
|
|
-I${JDK_TOPDIR}/src/java.base/share/native/include \
|
|
|
|
-I${JDK_TOPDIR}/src/java.base/$OPENJDK_TARGET_OS/native/include \
|
2015-10-19 17:21:27 +00:00
|
|
|
-I${JDK_TOPDIR}/src/java.base/$OPENJDK_TARGET_OS_TYPE/native/include \
|
|
|
|
-I${JDK_TOPDIR}/src/java.base/share/native/libjava \
|
|
|
|
-I${JDK_TOPDIR}/src/java.base/$OPENJDK_TARGET_OS_TYPE/native/libjava"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
# The shared libraries are compiled using the picflag.
|
2014-06-12 23:33:32 +00:00
|
|
|
CFLAGS_JDKLIB="$COMMON_CCXXFLAGS_JDK $CFLAGS_JDK $PICFLAG $CFLAGS_JDKLIB_EXTRA"
|
2015-03-10 13:36:56 +00:00
|
|
|
CXXFLAGS_JDKLIB="$COMMON_CCXXFLAGS_JDK $CXXFLAGS_JDK $PICFLAG $CXXFLAGS_JDKLIB_EXTRA"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
# Executable flags
|
2014-06-12 23:33:32 +00:00
|
|
|
CFLAGS_JDKEXE="$COMMON_CCXXFLAGS_JDK $CFLAGS_JDK"
|
|
|
|
CXXFLAGS_JDKEXE="$COMMON_CCXXFLAGS_JDK $CXXFLAGS_JDK"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
AC_SUBST(CFLAGS_JDKLIB)
|
|
|
|
AC_SUBST(CFLAGS_JDKEXE)
|
|
|
|
AC_SUBST(CXXFLAGS_JDKLIB)
|
|
|
|
AC_SUBST(CXXFLAGS_JDKEXE)
|
|
|
|
|
2015-03-10 13:36:56 +00:00
|
|
|
# Flags for compiling test libraries
|
|
|
|
CFLAGS_TESTLIB="$COMMON_CCXXFLAGS_JDK $CFLAGS_JDK $PICFLAG $CFLAGS_JDKLIB_EXTRA"
|
|
|
|
CXXFLAGS_TESTLIB="$COMMON_CCXXFLAGS_JDK $CXXFLAGS_JDK $PICFLAG $CXXFLAGS_JDKLIB_EXTRA"
|
|
|
|
|
|
|
|
# Flags for compiling test executables
|
|
|
|
CFLAGS_TESTEXE="$COMMON_CCXXFLAGS_JDK $CFLAGS_JDK"
|
|
|
|
CXXFLAGS_TESTEXE="$COMMON_CCXXFLAGS_JDK $CXXFLAGS_JDK"
|
|
|
|
|
|
|
|
AC_SUBST(CFLAGS_TESTLIB)
|
|
|
|
AC_SUBST(CFLAGS_TESTEXE)
|
|
|
|
AC_SUBST(CXXFLAGS_TESTLIB)
|
|
|
|
AC_SUBST(CXXFLAGS_TESTEXE)
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
# Setup LDFLAGS et al.
|
|
|
|
#
|
2014-06-12 23:33:32 +00:00
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
# Now this is odd. The JDK native libraries have to link against libjvm.so
|
|
|
|
# On 32-bit machines there is normally two distinct libjvm.so:s, client and server.
|
|
|
|
# Which should we link to? Are we lucky enough that the binary api to the libjvm.so library
|
|
|
|
# is identical for client and server? Yes. Which is picked at runtime (client or server)?
|
|
|
|
# Neither, since the chosen libjvm.so has already been loaded by the launcher, all the following
|
|
|
|
# libraries will link to whatever is in memory. Yuck.
|
|
|
|
#
|
|
|
|
# Thus we offer the compiler to find libjvm.so first in server then in client. It works. Ugh.
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK -nologo -opt:ref -incremental:no"
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_BITS" = "x32"; then
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK -safeseh"
|
|
|
|
fi
|
|
|
|
# TODO: make -debug optional "--disable-full-debug-symbols"
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK -debug"
|
2014-06-12 23:33:32 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xgcc; then
|
|
|
|
# If this is a --hash-style=gnu system, use --hash-style=both, why?
|
|
|
|
# We have previously set HAS_GNU_HASH if this is the case
|
|
|
|
if test -n "$HAS_GNU_HASH"; then
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDK="${LDFLAGS_JDK} -Wl,--hash-style=both"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
|
|
|
# And since we now know that the linker is gnu, then add -z defs, to forbid
|
|
|
|
# undefined symbols in object files.
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDK="${LDFLAGS_JDK} -Wl,-z,defs"
|
2014-06-12 23:33:32 +00:00
|
|
|
case $DEBUG_LEVEL in
|
|
|
|
release )
|
|
|
|
# tell linker to optimize libraries.
|
2014-02-24 11:16:58 +00:00
|
|
|
# Should this be supplied to the OSS linker as well?
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDK="${LDFLAGS_JDK} -Wl,-O1"
|
2014-06-12 23:33:32 +00:00
|
|
|
;;
|
|
|
|
slowdebug )
|
|
|
|
if test "x$HAS_LINKER_NOW" = "xtrue"; then
|
|
|
|
# do relocations at load
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK $LINKER_NOW_FLAG"
|
|
|
|
LDFLAGS_CXX_JDK="$LDFLAGS_CXX_JDK $LINKER_NOW_FLAG"
|
|
|
|
fi
|
|
|
|
if test "x$HAS_LINKER_RELRO" = "xtrue"; then
|
|
|
|
# mark relocations read only
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK $LINKER_RELRO_FLAG"
|
|
|
|
LDFLAGS_CXX_JDK="$LDFLAGS_CXX_JDK $LINKER_RELRO_FLAG"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
fastdebug )
|
|
|
|
if test "x$HAS_LINKER_RELRO" = "xtrue"; then
|
|
|
|
# mark relocations read only
|
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK $LINKER_RELRO_FLAG"
|
|
|
|
LDFLAGS_CXX_JDK="$LDFLAGS_CXX_JDK $LINKER_RELRO_FLAG"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
AC_MSG_ERROR([Unrecognized \$DEBUG_LEVEL: $DEBUG_LEVEL])
|
|
|
|
;;
|
|
|
|
esac
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDK="$LDFLAGS_JDK -Wl,-z,defs -xildoff -ztext"
|
2014-06-12 23:33:32 +00:00
|
|
|
LDFLAGS_CXX_JDK="$LDFLAGS_CXX_JDK -norunpath -xnolib"
|
2015-03-19 14:28:22 +00:00
|
|
|
elif test "x$TOOLCHAIN_TYPE" = xxlc; then
|
2015-10-29 15:30:02 +00:00
|
|
|
LDFLAGS_JDK="${LDFLAGS_JDK} -brtl -bnolibpath -bexpall -bernotok"
|
2014-06-12 23:33:32 +00:00
|
|
|
fi
|
2014-02-24 11:16:58 +00:00
|
|
|
|
2014-06-12 23:33:32 +00:00
|
|
|
# Customize LDFLAGS for executables
|
|
|
|
|
|
|
|
LDFLAGS_JDKEXE="${LDFLAGS_JDK}"
|
|
|
|
|
|
|
|
if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
|
|
|
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64"; then
|
|
|
|
LDFLAGS_STACK_SIZE=1048576
|
|
|
|
else
|
|
|
|
LDFLAGS_STACK_SIZE=327680
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
LDFLAGS_JDKEXE="${LDFLAGS_JDKEXE} /STACK:$LDFLAGS_STACK_SIZE"
|
|
|
|
elif test "x$OPENJDK_TARGET_OS" = xlinux; then
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDKEXE="$LDFLAGS_JDKEXE -Wl,--allow-shlib-undefined"
|
2014-06-12 23:33:32 +00:00
|
|
|
fi
|
2014-02-24 11:16:58 +00:00
|
|
|
|
2014-06-12 23:33:32 +00:00
|
|
|
# Customize LDFLAGS for libs
|
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDK}"
|
|
|
|
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} ${SHARED_LIBRARY_FLAGS}"
|
2014-06-12 23:33:32 +00:00
|
|
|
if test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} \
|
|
|
|
-libpath:${OUTPUT_ROOT}/support/modules_libs/java.base"
|
2015-10-29 15:30:02 +00:00
|
|
|
JDKLIB_LIBS=""
|
2014-06-12 23:33:32 +00:00
|
|
|
else
|
2015-12-15 10:02:03 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} \
|
2014-12-03 14:20:21 +00:00
|
|
|
-L${OUTPUT_ROOT}/support/modules_libs/java.base${OPENJDK_TARGET_CPU_LIBDIR}"
|
2014-02-24 11:16:58 +00:00
|
|
|
|
|
|
|
# On some platforms (mac) the linker warns about non existing -L dirs.
|
|
|
|
# Add server first if available. Linking aginst client does not always produce the same results.
|
|
|
|
# Only add client dir if client is being built. Add minimal (note not minimal1) if only building minimal1.
|
|
|
|
# Default to server for other variants.
|
|
|
|
if test "x$JVM_VARIANT_SERVER" = xtrue; then
|
2014-12-03 14:20:21 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} -L${OUTPUT_ROOT}/support/modules_libs/java.base${OPENJDK_TARGET_CPU_LIBDIR}/server"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$JVM_VARIANT_CLIENT" = xtrue; then
|
2014-12-03 14:20:21 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} -L${OUTPUT_ROOT}/support/modules_libs/java.base${OPENJDK_TARGET_CPU_LIBDIR}/client"
|
2014-02-24 11:16:58 +00:00
|
|
|
elif test "x$JVM_VARIANT_MINIMAL1" = xtrue; then
|
2014-12-03 14:20:21 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} -L${OUTPUT_ROOT}/support/modules_libs/java.base${OPENJDK_TARGET_CPU_LIBDIR}/minimal"
|
2014-02-24 11:16:58 +00:00
|
|
|
else
|
2014-12-03 14:20:21 +00:00
|
|
|
LDFLAGS_JDKLIB="${LDFLAGS_JDKLIB} -L${OUTPUT_ROOT}/support/modules_libs/java.base${OPENJDK_TARGET_CPU_LIBDIR}/server"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
|
2015-10-29 15:30:02 +00:00
|
|
|
JDKLIB_LIBS="-ljava -ljvm"
|
2014-02-24 11:16:58 +00:00
|
|
|
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then
|
2015-10-29 15:30:02 +00:00
|
|
|
JDKLIB_LIBS="$JDKLIB_LIBS -lc"
|
2014-02-24 11:16:58 +00:00
|
|
|
fi
|
|
|
|
fi
|
2014-06-12 23:33:32 +00:00
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_SUBST(LDFLAGS_JDKLIB)
|
|
|
|
AC_SUBST(LDFLAGS_JDKEXE)
|
2015-10-29 15:30:02 +00:00
|
|
|
AC_SUBST(JDKLIB_LIBS)
|
|
|
|
AC_SUBST(JDKEXE_LIBS)
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_SUBST(LDFLAGS_CXX_JDK)
|
2015-03-10 13:36:56 +00:00
|
|
|
|
|
|
|
LDFLAGS_TESTLIB="$LDFLAGS_JDKLIB"
|
|
|
|
LDFLAGS_TESTEXE="$LDFLAGS_JDKEXE"
|
|
|
|
|
|
|
|
AC_SUBST(LDFLAGS_TESTLIB)
|
|
|
|
AC_SUBST(LDFLAGS_TESTEXE)
|
2014-02-24 11:16:58 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
# FLAGS_COMPILER_CHECK_ARGUMENTS([ARGUMENT], [RUN-IF-TRUE],
|
|
|
|
# [RUN-IF-FALSE])
|
|
|
|
# ------------------------------------------------------------
|
|
|
|
# Check that the c and c++ compilers support an argument
|
|
|
|
AC_DEFUN([FLAGS_COMPILER_CHECK_ARGUMENTS],
|
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([if compiler supports "$1"])
|
|
|
|
supports=yes
|
|
|
|
|
|
|
|
saved_cflags="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS $1"
|
|
|
|
AC_LANG_PUSH([C])
|
2014-06-12 23:33:32 +00:00
|
|
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int i;]])], [],
|
2014-02-24 11:16:58 +00:00
|
|
|
[supports=no])
|
|
|
|
AC_LANG_POP([C])
|
|
|
|
CFLAGS="$saved_cflags"
|
|
|
|
|
|
|
|
saved_cxxflags="$CXXFLAGS"
|
|
|
|
CXXFLAGS="$CXXFLAG $1"
|
|
|
|
AC_LANG_PUSH([C++])
|
2014-06-12 23:33:32 +00:00
|
|
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int i;]])], [],
|
2014-02-24 11:16:58 +00:00
|
|
|
[supports=no])
|
|
|
|
AC_LANG_POP([C++])
|
|
|
|
CXXFLAGS="$saved_cxxflags"
|
|
|
|
|
|
|
|
AC_MSG_RESULT([$supports])
|
|
|
|
if test "x$supports" = "xyes" ; then
|
|
|
|
m4_ifval([$2], [$2], [:])
|
|
|
|
else
|
|
|
|
m4_ifval([$3], [$3], [:])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2014-06-12 23:33:32 +00:00
|
|
|
# FLAGS_LINKER_CHECK_ARGUMENTS([ARGUMENT], [RUN-IF-TRUE],
|
|
|
|
# [RUN-IF-FALSE])
|
|
|
|
# ------------------------------------------------------------
|
|
|
|
# Check that the linker support an argument
|
|
|
|
AC_DEFUN([FLAGS_LINKER_CHECK_ARGUMENTS],
|
|
|
|
[
|
|
|
|
AC_MSG_CHECKING([if linker supports "$1"])
|
|
|
|
supports=yes
|
|
|
|
|
|
|
|
saved_ldflags="$LDFLAGS"
|
|
|
|
LDFLAGS="$LDFLAGS $1"
|
|
|
|
AC_LANG_PUSH([C])
|
|
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],
|
|
|
|
[], [supports=no])
|
|
|
|
AC_LANG_POP([C])
|
|
|
|
LDFLAGS="$saved_ldflags"
|
|
|
|
|
|
|
|
AC_MSG_RESULT([$supports])
|
|
|
|
if test "x$supports" = "xyes" ; then
|
|
|
|
m4_ifval([$2], [$2], [:])
|
|
|
|
else
|
|
|
|
m4_ifval([$3], [$3], [:])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2014-02-24 11:16:58 +00:00
|
|
|
AC_DEFUN_ONCE([FLAGS_SETUP_COMPILER_FLAGS_MISC],
|
|
|
|
[
|
|
|
|
# Some Zero and Shark settings.
|
|
|
|
# ZERO_ARCHFLAG tells the compiler which mode to build for
|
|
|
|
case "${OPENJDK_TARGET_CPU}" in
|
|
|
|
s390)
|
|
|
|
ZERO_ARCHFLAG="${COMPILER_TARGET_BITS_FLAG}31"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ZERO_ARCHFLAG="${COMPILER_TARGET_BITS_FLAG}${OPENJDK_TARGET_CPU_BITS}"
|
|
|
|
esac
|
|
|
|
FLAGS_COMPILER_CHECK_ARGUMENTS([$ZERO_ARCHFLAG], [], [ZERO_ARCHFLAG=""])
|
|
|
|
AC_SUBST(ZERO_ARCHFLAG)
|
|
|
|
|
|
|
|
# Check that the compiler supports -mX (or -qX on AIX) flags
|
|
|
|
# Set COMPILER_SUPPORTS_TARGET_BITS_FLAG to 'true' if it does
|
|
|
|
FLAGS_COMPILER_CHECK_ARGUMENTS([${COMPILER_TARGET_BITS_FLAG}${OPENJDK_TARGET_CPU_BITS}],
|
|
|
|
[COMPILER_SUPPORTS_TARGET_BITS_FLAG=true],
|
|
|
|
[COMPILER_SUPPORTS_TARGET_BITS_FLAG=false])
|
|
|
|
AC_SUBST(COMPILER_SUPPORTS_TARGET_BITS_FLAG)
|
2014-03-21 08:35:43 +00:00
|
|
|
|
2015-05-08 08:37:13 +00:00
|
|
|
AC_ARG_ENABLE([warnings-as-errors], [AS_HELP_STRING([--disable-warnings-as-errors],
|
|
|
|
[do not consider native warnings to be an error @<:@enabled@:>@])])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([if native warnings are errors])
|
|
|
|
if test "x$enable_warnings_as_errors" = "xyes"; then
|
|
|
|
AC_MSG_RESULT([yes (explicitely set)])
|
|
|
|
WARNINGS_AS_ERRORS=true
|
|
|
|
elif test "x$enable_warnings_as_errors" = "xno"; then
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
WARNINGS_AS_ERRORS=false
|
|
|
|
elif test "x$enable_warnings_as_errors" = "x"; then
|
|
|
|
AC_MSG_RESULT([yes (default)])
|
|
|
|
WARNINGS_AS_ERRORS=true
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR([--enable-warnings-as-errors accepts no argument])
|
|
|
|
fi
|
2015-11-05 16:32:57 +00:00
|
|
|
|
|
|
|
if test "x$WARNINGS_AS_ERRORS" = "xfalse"; then
|
|
|
|
# Set legacy hotspot variable
|
2015-11-05 22:25:33 +00:00
|
|
|
HOTSPOT_SET_WARNINGS_AS_ERRORS="WARNINGS_ARE_ERRORS="
|
2015-11-05 16:32:57 +00:00
|
|
|
else
|
2015-11-05 22:25:33 +00:00
|
|
|
HOTSPOT_SET_WARNINGS_AS_ERRORS=""
|
2015-11-05 16:32:57 +00:00
|
|
|
fi
|
|
|
|
|
2015-05-08 08:37:13 +00:00
|
|
|
AC_SUBST(WARNINGS_AS_ERRORS)
|
2015-11-05 16:32:57 +00:00
|
|
|
AC_SUBST(HOTSPOT_SET_WARNINGS_AS_ERRORS)
|
2015-05-08 08:37:13 +00:00
|
|
|
|
2014-03-21 08:35:43 +00:00
|
|
|
case "${TOOLCHAIN_TYPE}" in
|
|
|
|
microsoft)
|
2015-03-09 09:39:16 +00:00
|
|
|
DISABLE_WARNING_PREFIX="-wd"
|
2014-08-19 11:43:40 +00:00
|
|
|
CFLAGS_WARNINGS_ARE_ERRORS="-WX"
|
2014-03-21 08:35:43 +00:00
|
|
|
;;
|
|
|
|
solstudio)
|
2015-03-09 09:39:16 +00:00
|
|
|
DISABLE_WARNING_PREFIX="-erroff="
|
2014-03-21 08:35:43 +00:00
|
|
|
CFLAGS_WARNINGS_ARE_ERRORS="-errtags -errwarn=%all"
|
|
|
|
;;
|
|
|
|
gcc)
|
2015-03-09 09:39:16 +00:00
|
|
|
# Prior to gcc 4.4, a -Wno-X where X is unknown for that version of gcc will cause an error
|
|
|
|
FLAGS_COMPILER_CHECK_ARGUMENTS([-Wno-this-is-a-warning-that-do-not-exist],
|
|
|
|
[GCC_CAN_DISABLE_WARNINGS=true],
|
|
|
|
[GCC_CAN_DISABLE_WARNINGS=false]
|
|
|
|
)
|
|
|
|
if test "x$GCC_CAN_DISABLE_WARNINGS" = "xtrue"; then
|
|
|
|
DISABLE_WARNING_PREFIX="-Wno-"
|
|
|
|
else
|
|
|
|
DISABLE_WARNING_PREFIX=
|
|
|
|
fi
|
2014-03-21 08:35:43 +00:00
|
|
|
CFLAGS_WARNINGS_ARE_ERRORS="-Werror"
|
2015-11-24 14:46:04 +00:00
|
|
|
# Repeate the check for the BUILD_CC
|
|
|
|
CC_OLD="$CC"
|
|
|
|
CC="$BUILD_CC"
|
|
|
|
FLAGS_COMPILER_CHECK_ARGUMENTS([-Wno-this-is-a-warning-that-do-not-exist],
|
|
|
|
[BUILD_CC_CAN_DISABLE_WARNINGS=true],
|
|
|
|
[BUILD_CC_CAN_DISABLE_WARNINGS=false]
|
|
|
|
)
|
|
|
|
if test "x$BUILD_CC_CAN_DISABLE_WARNINGS" = "xtrue"; then
|
|
|
|
BUILD_CC_DISABLE_WARNING_PREFIX="-Wno-"
|
|
|
|
else
|
|
|
|
BUILD_CC_DISABLE_WARNING_PREFIX=
|
|
|
|
fi
|
|
|
|
CC="$CC_OLD"
|
2014-03-21 08:35:43 +00:00
|
|
|
;;
|
|
|
|
clang)
|
2015-03-09 09:39:16 +00:00
|
|
|
DISABLE_WARNING_PREFIX="-Wno-"
|
2014-03-21 08:35:43 +00:00
|
|
|
CFLAGS_WARNINGS_ARE_ERRORS="-Werror"
|
|
|
|
;;
|
|
|
|
esac
|
2015-03-09 09:39:16 +00:00
|
|
|
AC_SUBST(DISABLE_WARNING_PREFIX)
|
2014-03-21 08:35:43 +00:00
|
|
|
AC_SUBST(CFLAGS_WARNINGS_ARE_ERRORS)
|
2014-02-24 11:16:58 +00:00
|
|
|
])
|