common/autoconf/platform.m4
author alanb
Thu, 17 Mar 2016 19:03:53 +0000
changeset 36506 17612cee3530
parent 36294 9fd82483d43c
child 37402 62b5f067032e
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: alanb, mchung, tbell Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, erik.joelsson@oracle.com, chris.hegarty@oracle.com, christian.tornqvist@oracle.com, harold.seigel@oracle.com, igor.ignatyev@oracle.com, james.laskey@oracle.com, jean-francois.denise@oracle.com, sundararajan.athijegannathan@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     2
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     4
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    10
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    15
# accompanied this code).
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    16
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    20
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    23
# questions.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    24
#
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    25
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    26
# Support macro for PLATFORM_EXTRACT_TARGET_AND_BUILD.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    27
# Converts autoconf style CPU name to OpenJDK style, into
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    28
# VAR_CPU, VAR_CPU_ARCH, VAR_CPU_BITS and VAR_CPU_ENDIAN.
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    29
AC_DEFUN([PLATFORM_EXTRACT_VARS_FROM_CPU],
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    30
[
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    31
  # First argument is the cpu name from the trip/quad
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    32
  case "$1" in
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    33
    x86_64)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    34
      VAR_CPU=x86_64
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    35
      VAR_CPU_ARCH=x86
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    36
      VAR_CPU_BITS=64
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    37
      VAR_CPU_ENDIAN=little
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    38
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    39
    i?86)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
    40
      VAR_CPU=x86
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    41
      VAR_CPU_ARCH=x86
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    42
      VAR_CPU_BITS=32
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    43
      VAR_CPU_ENDIAN=little
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    44
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    45
    arm*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    46
      VAR_CPU=arm
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    47
      VAR_CPU_ARCH=arm
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    48
      VAR_CPU_BITS=32
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    49
      VAR_CPU_ENDIAN=little
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    50
      ;;
29161
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    51
    aarch64)
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    52
      VAR_CPU=aarch64
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    53
      VAR_CPU_ARCH=aarch64
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    54
      VAR_CPU_BITS=64
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    55
      VAR_CPU_ENDIAN=little
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    56
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    57
    powerpc)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    58
      VAR_CPU=ppc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    59
      VAR_CPU_ARCH=ppc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    60
      VAR_CPU_BITS=32
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    61
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
    62
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    63
    powerpc64)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    64
      VAR_CPU=ppc64
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    65
      VAR_CPU_ARCH=ppc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    66
      VAR_CPU_BITS=64
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    67
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
    68
      ;;
23437
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
    69
    powerpc64le)
35011
38e98bda5585 8073139: PPC64: User-visible arch directory and os.arch value on ppc64le cause issues with Java tooling
asmundak
parents: 32809
diff changeset
    70
      VAR_CPU=ppc64le
23437
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
    71
      VAR_CPU_ARCH=ppc
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
    72
      VAR_CPU_BITS=64
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
    73
      VAR_CPU_ENDIAN=little
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
    74
      ;;
19676
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    75
    s390)
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    76
      VAR_CPU=s390
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    77
      VAR_CPU_ARCH=s390
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    78
      VAR_CPU_BITS=32
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    79
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
    80
      ;;
19676
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    81
    s390x)
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    82
      VAR_CPU=s390x
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    83
      VAR_CPU_ARCH=s390
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    84
      VAR_CPU_BITS=64
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
    85
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
    86
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    87
    sparc)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    88
      VAR_CPU=sparc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    89
      VAR_CPU_ARCH=sparc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    90
      VAR_CPU_BITS=32
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    91
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
    92
      ;;
25040
09052d7f1467 8047763: Recognize sparc64 as a sparc platform
mikael
parents: 23437
diff changeset
    93
    sparcv9|sparc64)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    94
      VAR_CPU=sparcv9
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    95
      VAR_CPU_ARCH=sparc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    96
      VAR_CPU_BITS=64
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    97
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
    98
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    99
    *)
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   100
      AC_MSG_ERROR([unsupported cpu $1])
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   101
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   102
  esac
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   103
])
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   104
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   105
# Support macro for PLATFORM_EXTRACT_TARGET_AND_BUILD.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   106
# Converts autoconf style OS name to OpenJDK style, into
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   107
# VAR_OS, VAR_OS_TYPE and VAR_OS_ENV.
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   108
AC_DEFUN([PLATFORM_EXTRACT_VARS_FROM_OS],
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   109
[
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   110
  case "$1" in
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   111
    *linux*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   112
      VAR_OS=linux
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   113
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   114
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   115
    *solaris*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   116
      VAR_OS=solaris
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   117
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   118
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   119
    *darwin*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   120
      VAR_OS=macosx
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   121
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   122
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   123
    *bsd*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   124
      VAR_OS=bsd
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   125
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   126
      ;;
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   127
    *cygwin*)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   128
      VAR_OS=windows
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   129
      VAR_OS_ENV=windows.cygwin
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   130
      ;;
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   131
    *mingw*)
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   132
      VAR_OS=windows
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   133
      VAR_OS_ENV=windows.msys
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   134
      ;;
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   135
    *aix*)
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   136
      VAR_OS=aix
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   137
      VAR_OS_TYPE=unix
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   138
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   139
    *)
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   140
      AC_MSG_ERROR([unsupported operating system $1])
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   141
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   142
  esac
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   143
])
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   144
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   145
# Expects $host_os $host_cpu $build_os and $build_cpu
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   146
# and $with_target_bits to have been setup!
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   147
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   148
# Translate the standard triplet(quadruplet) definition
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   149
# of the target/build system into OPENJDK_TARGET_OS, OPENJDK_TARGET_CPU,
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   150
# OPENJDK_BUILD_OS, etc.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   151
AC_DEFUN([PLATFORM_EXTRACT_TARGET_AND_BUILD],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   152
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   153
  # Copy the autoconf trip/quadruplet verbatim to OPENJDK_TARGET_AUTOCONF_NAME
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   154
  # (from the autoconf "host") and OPENJDK_BUILD_AUTOCONF_NAME
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   155
  # Note that we might later on rewrite e.g. OPENJDK_TARGET_CPU due to reduced build,
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   156
  # but this will not change the value of OPENJDK_TARGET_AUTOCONF_NAME.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   157
  OPENJDK_TARGET_AUTOCONF_NAME="$host"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   158
  OPENJDK_BUILD_AUTOCONF_NAME="$build"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   159
  AC_SUBST(OPENJDK_TARGET_AUTOCONF_NAME)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   160
  AC_SUBST(OPENJDK_BUILD_AUTOCONF_NAME)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   161
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   162
  # Convert the autoconf OS/CPU value to our own data, into the VAR_OS/CPU variables.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   163
  PLATFORM_EXTRACT_VARS_FROM_OS($build_os)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   164
  PLATFORM_EXTRACT_VARS_FROM_CPU($build_cpu)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   165
  # ..and setup our own variables. (Do this explicitely to facilitate searching)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   166
  OPENJDK_BUILD_OS="$VAR_OS"
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   167
  if test "x$VAR_OS_TYPE" != x; then
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   168
    OPENJDK_BUILD_OS_TYPE="$VAR_OS_TYPE"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   169
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   170
    OPENJDK_BUILD_OS_TYPE="$VAR_OS"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   171
  fi
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   172
  if test "x$VAR_OS_ENV" != x; then
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   173
    OPENJDK_BUILD_OS_ENV="$VAR_OS_ENV"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   174
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   175
    OPENJDK_BUILD_OS_ENV="$VAR_OS"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   176
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   177
  OPENJDK_BUILD_CPU="$VAR_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   178
  OPENJDK_BUILD_CPU_ARCH="$VAR_CPU_ARCH"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   179
  OPENJDK_BUILD_CPU_BITS="$VAR_CPU_BITS"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   180
  OPENJDK_BUILD_CPU_ENDIAN="$VAR_CPU_ENDIAN"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   181
  AC_SUBST(OPENJDK_BUILD_OS)
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   182
  AC_SUBST(OPENJDK_BUILD_OS_TYPE)
25882
bd4315f0084b 8022177: Windows/MSYS builds broken
erikj
parents: 25854
diff changeset
   183
  AC_SUBST(OPENJDK_BUILD_OS_ENV)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   184
  AC_SUBST(OPENJDK_BUILD_CPU)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   185
  AC_SUBST(OPENJDK_BUILD_CPU_ARCH)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   186
  AC_SUBST(OPENJDK_BUILD_CPU_BITS)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   187
  AC_SUBST(OPENJDK_BUILD_CPU_ENDIAN)
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   188
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   189
  AC_MSG_CHECKING([openjdk-build os-cpu])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   190
  AC_MSG_RESULT([$OPENJDK_BUILD_OS-$OPENJDK_BUILD_CPU])
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   191
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   192
  # Convert the autoconf OS/CPU value to our own data, into the VAR_OS/CPU variables.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   193
  PLATFORM_EXTRACT_VARS_FROM_OS($host_os)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   194
  PLATFORM_EXTRACT_VARS_FROM_CPU($host_cpu)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   195
  # ... and setup our own variables. (Do this explicitely to facilitate searching)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   196
  OPENJDK_TARGET_OS="$VAR_OS"
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   197
  if test "x$VAR_OS_TYPE" != x; then
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   198
    OPENJDK_TARGET_OS_TYPE="$VAR_OS_TYPE"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   199
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   200
    OPENJDK_TARGET_OS_TYPE="$VAR_OS"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   201
  fi
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   202
  if test "x$VAR_OS_ENV" != x; then
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   203
    OPENJDK_TARGET_OS_ENV="$VAR_OS_ENV"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   204
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   205
    OPENJDK_TARGET_OS_ENV="$VAR_OS"
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   206
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   207
  OPENJDK_TARGET_CPU="$VAR_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   208
  OPENJDK_TARGET_CPU_ARCH="$VAR_CPU_ARCH"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   209
  OPENJDK_TARGET_CPU_BITS="$VAR_CPU_BITS"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   210
  OPENJDK_TARGET_CPU_ENDIAN="$VAR_CPU_ENDIAN"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   211
  AC_SUBST(OPENJDK_TARGET_OS)
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   212
  AC_SUBST(OPENJDK_TARGET_OS_TYPE)
25882
bd4315f0084b 8022177: Windows/MSYS builds broken
erikj
parents: 25854
diff changeset
   213
  AC_SUBST(OPENJDK_TARGET_OS_ENV)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   214
  AC_SUBST(OPENJDK_TARGET_CPU)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   215
  AC_SUBST(OPENJDK_TARGET_CPU_ARCH)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   216
  AC_SUBST(OPENJDK_TARGET_CPU_BITS)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   217
  AC_SUBST(OPENJDK_TARGET_CPU_ENDIAN)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   218
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   219
  AC_MSG_CHECKING([openjdk-target os-cpu])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   220
  AC_MSG_RESULT([$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   221
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   222
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   223
# Check if a reduced build (32-bit on 64-bit platforms) is requested, and modify behaviour
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   224
# accordingly. Must be done after setting up build and target system, but before
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   225
# doing anything else with these values.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   226
AC_DEFUN([PLATFORM_SETUP_TARGET_CPU_BITS],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   227
[
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   228
  AC_ARG_WITH(target-bits, [AS_HELP_STRING([--with-target-bits],
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   229
       [build 32-bit or 64-bit binaries (for platforms that support it), e.g. --with-target-bits=32 @<:@guessed@:>@])])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   230
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   231
  # We have three types of compiles:
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   232
  # native  == normal compilation, target system == build system
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   233
  # cross   == traditional cross compilation, target system != build system; special toolchain needed
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   234
  # reduced == using native compilers, but with special flags (e.g. -m32) to produce 32-bit builds on 64-bit machines
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   235
  #
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   236
  if test "x$OPENJDK_BUILD_AUTOCONF_NAME" != "x$OPENJDK_TARGET_AUTOCONF_NAME"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   237
    # We're doing a proper cross-compilation
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   238
    COMPILE_TYPE="cross"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   239
  else
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   240
    COMPILE_TYPE="native"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   241
  fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   242
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   243
  if test "x$with_target_bits" != x; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   244
    if test "x$COMPILE_TYPE" = "xcross"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   245
      AC_MSG_ERROR([It is not possible to combine --with-target-bits=X and proper cross-compilation. Choose either.])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   246
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   247
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   248
    if test "x$with_target_bits" = x32 && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   249
      # A reduced build is requested
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   250
      COMPILE_TYPE="reduced"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   251
      OPENJDK_TARGET_CPU_BITS=32
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   252
      if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   253
        OPENJDK_TARGET_CPU=x86
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   254
      elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   255
        OPENJDK_TARGET_CPU=sparc
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   256
      else
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   257
        AC_MSG_ERROR([Reduced build (--with-target-bits=32) is only supported on x86_64 and sparcv9])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   258
      fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   259
    elif test "x$with_target_bits" = x64 && test "x$OPENJDK_TARGET_CPU_BITS" = x32; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   260
      AC_MSG_ERROR([It is not possible to use --with-target-bits=64 on a 32 bit system. Use proper cross-compilation instead.])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   261
    elif test "x$with_target_bits" = "x$OPENJDK_TARGET_CPU_BITS"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   262
      AC_MSG_NOTICE([--with-target-bits are set to build platform address size; argument has no meaning])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   263
    else
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   264
      AC_MSG_ERROR([--with-target-bits can only be 32 or 64, you specified $with_target_bits!])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   265
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   266
  fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   267
  AC_SUBST(COMPILE_TYPE)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   268
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   269
  AC_MSG_CHECKING([compilation type])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   270
  AC_MSG_RESULT([$COMPILE_TYPE])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   271
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   272
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   273
# Setup the legacy variables, for controlling the old makefiles.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   274
#
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   275
AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   276
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   277
  # Also store the legacy naming of the cpu.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   278
  # Ie i586 and amd64 instead of x86 and x86_64
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   279
  OPENJDK_TARGET_CPU_LEGACY="$OPENJDK_TARGET_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   280
  if test "x$OPENJDK_TARGET_CPU" = xx86; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   281
    OPENJDK_TARGET_CPU_LEGACY="i586"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   282
  elif test "x$OPENJDK_TARGET_OS" != xmacosx && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   283
    # On all platforms except MacOSX replace x86_64 with amd64.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   284
    OPENJDK_TARGET_CPU_LEGACY="amd64"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   285
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   286
  AC_SUBST(OPENJDK_TARGET_CPU_LEGACY)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   287
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   288
  # And the second legacy naming of the cpu.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   289
  # Ie i386 and amd64 instead of x86 and x86_64.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   290
  OPENJDK_TARGET_CPU_LEGACY_LIB="$OPENJDK_TARGET_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   291
  if test "x$OPENJDK_TARGET_CPU" = xx86; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   292
    OPENJDK_TARGET_CPU_LEGACY_LIB="i386"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   293
  elif test "x$OPENJDK_TARGET_CPU" = xx86_64; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   294
    OPENJDK_TARGET_CPU_LEGACY_LIB="amd64"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   295
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   296
  AC_SUBST(OPENJDK_TARGET_CPU_LEGACY_LIB)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   297
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   298
  # This is the name of the cpu (but using i386 and amd64 instead of
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   299
  # x86 and x86_64, respectively), preceeded by a /, to be used when
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   300
  # locating libraries. On macosx, it's empty, though.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   301
  OPENJDK_TARGET_CPU_LIBDIR="/$OPENJDK_TARGET_CPU_LEGACY_LIB"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   302
  if test "x$OPENJDK_TARGET_OS" = xmacosx; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   303
    OPENJDK_TARGET_CPU_LIBDIR=""
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   304
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   305
  AC_SUBST(OPENJDK_TARGET_CPU_LIBDIR)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   306
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   307
  # Now do the same for OPENJDK_BUILD_CPU...
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   308
  # Also store the legacy naming of the cpu.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   309
  # Ie i586 and amd64 instead of x86 and x86_64
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   310
  OPENJDK_BUILD_CPU_LEGACY="$OPENJDK_BUILD_CPU"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   311
  if test "x$OPENJDK_BUILD_CPU" = xx86; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   312
    OPENJDK_BUILD_CPU_LEGACY="i586"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   313
  elif test "x$OPENJDK_BUILD_OS" != xmacosx && test "x$OPENJDK_BUILD_CPU" = xx86_64; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   314
    # On all platforms except MacOSX replace x86_64 with amd64.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   315
    OPENJDK_BUILD_CPU_LEGACY="amd64"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   316
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   317
  AC_SUBST(OPENJDK_BUILD_CPU_LEGACY)
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   318
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   319
  # And the second legacy naming of the cpu.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   320
  # Ie i386 and amd64 instead of x86 and x86_64.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   321
  OPENJDK_BUILD_CPU_LEGACY_LIB="$OPENJDK_BUILD_CPU"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   322
  if test "x$OPENJDK_BUILD_CPU" = xx86; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   323
    OPENJDK_BUILD_CPU_LEGACY_LIB="i386"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   324
  elif test "x$OPENJDK_BUILD_CPU" = xx86_64; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   325
    OPENJDK_BUILD_CPU_LEGACY_LIB="amd64"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   326
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   327
  AC_SUBST(OPENJDK_BUILD_CPU_LEGACY_LIB)
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   328
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   329
  # This is the name of the cpu (but using i386 and amd64 instead of
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   330
  # x86 and x86_64, respectively), preceeded by a /, to be used when
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   331
  # locating libraries. On macosx, it's empty, though.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   332
  OPENJDK_BUILD_CPU_LIBDIR="/$OPENJDK_BUILD_CPU_LEGACY_LIB"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   333
  if test "x$OPENJDK_BUILD_OS" = xmacosx; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   334
    OPENJDK_BUILD_CPU_LIBDIR=""
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   335
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   336
  AC_SUBST(OPENJDK_BUILD_CPU_LIBDIR)
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   337
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   338
  # OPENJDK_TARGET_CPU_ISADIR is normally empty. On 64-bit Solaris systems, it is set to
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   339
  # /amd64 or /sparcv9. This string is appended to some library paths, like this:
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   340
  # /usr/lib${OPENJDK_TARGET_CPU_ISADIR}/libexample.so
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   341
  OPENJDK_TARGET_CPU_ISADIR=""
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   342
  if test "x$OPENJDK_TARGET_OS" = xsolaris; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   343
    if test "x$OPENJDK_TARGET_CPU" = xx86_64; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   344
      OPENJDK_TARGET_CPU_ISADIR="/amd64"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   345
    elif test "x$OPENJDK_TARGET_CPU" = xsparcv9; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   346
      OPENJDK_TARGET_CPU_ISADIR="/sparcv9"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   347
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   348
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   349
  AC_SUBST(OPENJDK_TARGET_CPU_ISADIR)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   350
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   351
  # Setup OPENJDK_TARGET_CPU_OSARCH, which is used to set the os.arch Java system property
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   352
  OPENJDK_TARGET_CPU_OSARCH="$OPENJDK_TARGET_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   353
  if test "x$OPENJDK_TARGET_OS" = xlinux && test "x$OPENJDK_TARGET_CPU" = xx86; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   354
    # On linux only, we replace x86 with i386.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   355
    OPENJDK_TARGET_CPU_OSARCH="i386"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   356
  elif test "x$OPENJDK_TARGET_OS" != xmacosx && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   357
    # On all platforms except macosx, we replace x86_64 with amd64.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   358
    OPENJDK_TARGET_CPU_OSARCH="amd64"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   359
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   360
  AC_SUBST(OPENJDK_TARGET_CPU_OSARCH)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   361
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   362
  OPENJDK_TARGET_CPU_JLI="$OPENJDK_TARGET_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   363
  if test "x$OPENJDK_TARGET_CPU" = xx86; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   364
    OPENJDK_TARGET_CPU_JLI="i386"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   365
  elif test "x$OPENJDK_TARGET_OS" != xmacosx && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   366
    # On all platforms except macosx, we replace x86_64 with amd64.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   367
    OPENJDK_TARGET_CPU_JLI="amd64"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   368
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   369
  # Now setup the -D flags for building libjli.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   370
  OPENJDK_TARGET_CPU_JLI_CFLAGS="-DLIBARCHNAME='\"$OPENJDK_TARGET_CPU_JLI\"'"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   371
  if test "x$OPENJDK_TARGET_OS" = xsolaris; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   372
    if test "x$OPENJDK_TARGET_CPU_ARCH" = xsparc; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   373
      OPENJDK_TARGET_CPU_JLI_CFLAGS="$OPENJDK_TARGET_CPU_JLI_CFLAGS -DLIBARCH32NAME='\"sparc\"' -DLIBARCH64NAME='\"sparcv9\"'"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   374
    elif test "x$OPENJDK_TARGET_CPU_ARCH" = xx86; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   375
      OPENJDK_TARGET_CPU_JLI_CFLAGS="$OPENJDK_TARGET_CPU_JLI_CFLAGS -DLIBARCH32NAME='\"i386\"' -DLIBARCH64NAME='\"amd64\"'"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   376
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   377
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   378
  AC_SUBST(OPENJDK_TARGET_CPU_JLI_CFLAGS)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   379
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   380
  OPENJDK_BUILD_CPU_JLI="$OPENJDK_BUILD_CPU"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   381
  if test "x$OPENJDK_BUILD_CPU" = xx86; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   382
    OPENJDK_BUILD_CPU_JLI="i386"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   383
  elif test "x$OPENJDK_BUILD_OS" != xmacosx && test "x$OPENJDK_BUILD_CPU" = xx86_64; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   384
    # On all platforms except macosx, we replace x86_64 with amd64.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   385
    OPENJDK_BUILD_CPU_JLI="amd64"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   386
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   387
  # Now setup the -D flags for building libjli.
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   388
  OPENJDK_BUILD_CPU_JLI_CFLAGS="-DLIBARCHNAME='\"$OPENJDK_BUILD_CPU_JLI\"'"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   389
  if test "x$OPENJDK_BUILD_OS" = xsolaris; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   390
    if test "x$OPENJDK_BUILD_CPU_ARCH" = xsparc; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   391
      OPENJDK_BUILD_CPU_JLI_CFLAGS="$OPENJDK_BUILD_CPU_JLI_CFLAGS -DLIBARCH32NAME='\"sparc\"' -DLIBARCH64NAME='\"sparcv9\"'"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   392
    elif test "x$OPENJDK_BUILD_CPU_ARCH" = xx86; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   393
      OPENJDK_BUILD_CPU_JLI_CFLAGS="$OPENJDK_BUILD_CPU_JLI_CFLAGS -DLIBARCH32NAME='\"i386\"' -DLIBARCH64NAME='\"amd64\"'"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   394
    fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   395
  fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   396
  AC_SUBST(OPENJDK_BUILD_CPU_JLI_CFLAGS)
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   397
21055
d52217bb8e80 8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents: 20363
diff changeset
   398
  if test "x$OPENJDK_TARGET_OS" = xmacosx; then
d52217bb8e80 8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents: 20363
diff changeset
   399
      OPENJDK_TARGET_OS_EXPORT_DIR=macosx
d52217bb8e80 8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents: 20363
diff changeset
   400
  else
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   401
      OPENJDK_TARGET_OS_EXPORT_DIR=${OPENJDK_TARGET_OS_TYPE}
21055
d52217bb8e80 8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents: 20363
diff changeset
   402
  fi
d52217bb8e80 8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents: 20363
diff changeset
   403
  AC_SUBST(OPENJDK_TARGET_OS_EXPORT_DIR)
d52217bb8e80 8016096: [macosx] jawt_md.h shipped with jdk is outdated
dholmes
parents: 20363
diff changeset
   404
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   405
  if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   406
    A_LP64="LP64:="
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   407
    # -D_LP64=1 is only set on linux and mac. Setting on windows causes diff in
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   408
    # unpack200.exe
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   409
    if test "x$OPENJDK_TARGET_OS" = xlinux || test "x$OPENJDK_TARGET_OS" = xmacosx; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   410
      ADD_LP64="-D_LP64=1"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   411
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   412
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   413
  AC_SUBST(LP64,$A_LP64)
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   414
  if test "x$OPENJDK_BUILD_CPU_BITS" = x64; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   415
    if test "x$OPENJDK_BUILD_OS" = xlinux || test "x$OPENJDK_BUILD_OS" = xmacosx; then
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   416
      OPENJDK_BUILD_ADD_LP64="-D_LP64=1"
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   417
    fi
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   418
  fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   419
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   420
  if test "x$COMPILE_TYPE" = "xcross"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   421
    # FIXME: ... or should this include reduced builds..?
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   422
    DEFINE_CROSS_COMPILE_ARCH="CROSS_COMPILE_ARCH:=$OPENJDK_TARGET_CPU_LEGACY"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   423
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   424
    DEFINE_CROSS_COMPILE_ARCH=""
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   425
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   426
  AC_SUBST(DEFINE_CROSS_COMPILE_ARCH)
16581
b2cddec593f4 8011388: Support building zero and zeroshark with the new build
omajid
parents: 14111
diff changeset
   427
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   428
  # ZERO_ARCHDEF is used to enable architecture-specific code
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   429
  case "${OPENJDK_TARGET_CPU}" in
28004
d0931c6d456a 8067330: ZERO_ARCHDEF incorrectly defined for PPC/PPC64 architectures
sgehwolf
parents: 27586
diff changeset
   430
    ppc)     ZERO_ARCHDEF=PPC32 ;;
d0931c6d456a 8067330: ZERO_ARCHDEF incorrectly defined for PPC/PPC64 architectures
sgehwolf
parents: 27586
diff changeset
   431
    ppc64)   ZERO_ARCHDEF=PPC64 ;;
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   432
    s390*)   ZERO_ARCHDEF=S390  ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   433
    sparc*)  ZERO_ARCHDEF=SPARC ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   434
    x86_64*) ZERO_ARCHDEF=AMD64 ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   435
    x86)     ZERO_ARCHDEF=IA32  ;;
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   436
    *)      ZERO_ARCHDEF=$(echo "${OPENJDK_TARGET_CPU_LEGACY_LIB}" | tr a-z A-Z)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   437
  esac
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   438
  AC_SUBST(ZERO_ARCHDEF)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   439
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   440
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   441
AC_DEFUN([PLATFORM_SET_RELEASE_FILE_OS_VALUES],
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   442
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   443
  if test "x$OPENJDK_TARGET_OS" = "xsolaris"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   444
    REQUIRED_OS_NAME=SunOS
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   445
    REQUIRED_OS_VERSION=5.10
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   446
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   447
  if test "x$OPENJDK_TARGET_OS" = "xlinux"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   448
    REQUIRED_OS_NAME=Linux
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   449
    REQUIRED_OS_VERSION=2.6
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   450
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   451
  if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   452
    REQUIRED_OS_NAME=Windows
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   453
    if test "x$OPENJDK_TARGET_CPU_BITS" = "x64"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   454
      REQUIRED_OS_VERSION=5.2
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   455
    else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   456
      REQUIRED_OS_VERSION=5.1
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   457
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   458
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   459
  if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   460
    REQUIRED_OS_NAME=Darwin
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   461
    REQUIRED_OS_VERSION=11.2
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   462
  fi
36294
9fd82483d43c 8151497: Set REQUIRED_OS_NAME and REQUIRED_OS_VERSION on AIX
simonis
parents: 35011
diff changeset
   463
  if test "x$OPENJDK_TARGET_OS" = "xaix"; then
9fd82483d43c 8151497: Set REQUIRED_OS_NAME and REQUIRED_OS_VERSION on AIX
simonis
parents: 35011
diff changeset
   464
    REQUIRED_OS_NAME=AIX
9fd82483d43c 8151497: Set REQUIRED_OS_NAME and REQUIRED_OS_VERSION on AIX
simonis
parents: 35011
diff changeset
   465
    REQUIRED_OS_VERSION=7.1
9fd82483d43c 8151497: Set REQUIRED_OS_NAME and REQUIRED_OS_VERSION on AIX
simonis
parents: 35011
diff changeset
   466
  fi
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   467
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   468
  AC_SUBST(REQUIRED_OS_NAME)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   469
  AC_SUBST(REQUIRED_OS_VERSION)
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   470
])
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   471
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   472
#%%% Build and target systems %%%
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   473
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   474
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   475
  # Figure out the build and target systems. # Note that in autoconf terminology, "build" is obvious, but "target"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   476
  # is confusing; it assumes you are cross-compiling a cross-compiler (!)  and "target" is thus the target of the
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   477
  # product you're building. The target of this build is called "host". Since this is confusing to most people, we
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   478
  # have not adopted that system, but use "target" as the platform we are building for. In some places though we need
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   479
  # to use the configure naming style.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   480
  AC_CANONICAL_BUILD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   481
  AC_CANONICAL_HOST
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   482
  AC_CANONICAL_TARGET
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   483
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   484
  PLATFORM_EXTRACT_TARGET_AND_BUILD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   485
  PLATFORM_SETUP_TARGET_CPU_BITS
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   486
  PLATFORM_SET_RELEASE_FILE_OS_VALUES
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   487
  PLATFORM_SETUP_LEGACY_VARS
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   488
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   489
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   490
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   491
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   492
  ###############################################################################
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   493
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   494
  # Note that this is the build platform OS version!
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   495
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   496
  OS_VERSION="`uname -r | ${SED} 's!\.! !g' | ${SED} 's!-! !g'`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   497
  OS_VERSION_MAJOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 1 -d ' '`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   498
  OS_VERSION_MINOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 2 -d ' '`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   499
  OS_VERSION_MICRO="`${ECHO} ${OS_VERSION} | ${CUT} -f 3 -d ' '`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   500
  AC_SUBST(OS_VERSION_MAJOR)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   501
  AC_SUBST(OS_VERSION_MINOR)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   502
  AC_SUBST(OS_VERSION_MICRO)
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   503
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   504
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   505
# Support macro for PLATFORM_SETUP_OPENJDK_TARGET_BITS.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   506
# Add -mX to various FLAGS variables.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   507
AC_DEFUN([PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   508
[
19760
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   509
  # When we add flags to the "official" CFLAGS etc, we need to
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   510
  # keep track of these additions in ADDED_CFLAGS etc. These
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   511
  # will later be checked to make sure only controlled additions
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   512
  # have been made to CFLAGS etc.
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   513
  ADDED_CFLAGS=" ${COMPILER_TARGET_BITS_FLAG}${OPENJDK_TARGET_CPU_BITS}"
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   514
  ADDED_CXXFLAGS=" ${COMPILER_TARGET_BITS_FLAG}${OPENJDK_TARGET_CPU_BITS}"
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   515
  ADDED_LDFLAGS=" ${COMPILER_TARGET_BITS_FLAG}${OPENJDK_TARGET_CPU_BITS}"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   516
19760
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   517
  CFLAGS="${CFLAGS}${ADDED_CFLAGS}"
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   518
  CXXFLAGS="${CXXFLAGS}${ADDED_CXXFLAGS}"
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   519
  LDFLAGS="${LDFLAGS}${ADDED_LDFLAGS}"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   520
19760
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   521
  CFLAGS_JDK="${CFLAGS_JDK}${ADDED_CFLAGS}"
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   522
  CXXFLAGS_JDK="${CXXFLAGS_JDK}${ADDED_CXXFLAGS}"
7cd5ce917641 8024665: Move open changes for JDK-8020411 to closed source
ihse
parents: 19676
diff changeset
   523
  LDFLAGS_JDK="${LDFLAGS_JDK}${ADDED_LDFLAGS}"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   524
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   525
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   526
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_BITS],
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   527
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   528
  ###############################################################################
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   529
  #
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   530
  # Now we check if libjvm.so will use 32 or 64 bit pointers for the C/C++ code.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   531
  # (The JVM can use 32 or 64 bit Java pointers but that decision
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   532
  # is made at runtime.)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   533
  #
16984
ba1791eeb074 8013480: fix zero build on arm
omajid
parents: 16581
diff changeset
   534
22467
kvn
parents: 22466 21055
diff changeset
   535
  if test "x$OPENJDK_TARGET_OS" = xsolaris || test "x$OPENJDK_TARGET_OS" = xaix; then
kvn
parents: 22466 21055
diff changeset
   536
    # Always specify -m flag on Solaris
kvn
parents: 22466 21055
diff changeset
   537
    # And -q on AIX because otherwise the compiler produces 32-bit objects by default
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   538
    PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   539
  elif test "x$COMPILE_TYPE" = xreduced; then
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   540
    if test "x$OPENJDK_TARGET_OS_TYPE" = xunix; then
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   541
      # Specify -m if running reduced on unix platforms
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   542
      PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   543
    fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   544
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   545
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   546
  # Make compilation sanity check
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   547
  AC_CHECK_HEADERS([stdio.h], , [
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   548
    AC_MSG_NOTICE([Failed to compile stdio.h. This likely implies missing compile dependencies.])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   549
    if test "x$COMPILE_TYPE" = xreduced; then
32809
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   550
      HELP_MSG_MISSING_DEPENDENCY([reduced])
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   551
      AC_MSG_NOTICE([You are doing a reduced build. Check that you have 32-bit libraries installed. $HELP_MSG])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   552
    elif test "x$COMPILE_TYPE" = xcross; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   553
      AC_MSG_NOTICE([You are doing a cross-compilation. Check that you have all target platform libraries installed.])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   554
    fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   555
    AC_MSG_ERROR([Cannot continue.])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   556
  ])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   557
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   558
  AC_CHECK_SIZEOF([int *], [1111])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   559
22467
kvn
parents: 22466 21055
diff changeset
   560
  # AC_CHECK_SIZEOF defines 'ac_cv_sizeof_int_p' to hold the number of bytes used by an 'int*'
kvn
parents: 22466 21055
diff changeset
   561
  if test "x$ac_cv_sizeof_int_p" = x; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   562
    # The test failed, lets stick to the assumed value.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   563
    AC_MSG_WARN([The number of bits in the target could not be determined, using $OPENJDK_TARGET_CPU_BITS.])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   564
  else
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   565
    TESTED_TARGET_CPU_BITS=`expr 8 \* $ac_cv_sizeof_int_p`
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   566
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   567
    if test "x$TESTED_TARGET_CPU_BITS" != "x$OPENJDK_TARGET_CPU_BITS"; then
22467
kvn
parents: 22466 21055
diff changeset
   568
      # This situation may happen on 64-bit platforms where the compiler by default only generates 32-bit objects
kvn
parents: 22466 21055
diff changeset
   569
      # Let's try to implicitely set the compilers target architecture and retry the test
kvn
parents: 22466 21055
diff changeset
   570
      AC_MSG_NOTICE([The tested number of bits in the target ($TESTED_TARGET_CPU_BITS) differs from the number of bits expected to be found in the target ($OPENJDK_TARGET_CPU_BITS).])
32809
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   571
      AC_MSG_NOTICE([Retrying with platforms compiler target bits flag to ${COMPILER_TARGET_BITS_FLAG}${OPENJDK_TARGET_CPU_BITS}])
22467
kvn
parents: 22466 21055
diff changeset
   572
      PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   573
22467
kvn
parents: 22466 21055
diff changeset
   574
      # We have to unset 'ac_cv_sizeof_int_p' first, otherwise AC_CHECK_SIZEOF will use the previously cached value!
kvn
parents: 22466 21055
diff changeset
   575
      unset ac_cv_sizeof_int_p
kvn
parents: 22466 21055
diff changeset
   576
      # And we have to undef the definition of SIZEOF_INT_P in confdefs.h by the previous invocation of AC_CHECK_SIZEOF
kvn
parents: 22466 21055
diff changeset
   577
      cat >>confdefs.h <<_ACEOF
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   578
#undef SIZEOF_INT_P
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   579
_ACEOF
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   580
22467
kvn
parents: 22466 21055
diff changeset
   581
      AC_CHECK_SIZEOF([int *], [1111])
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   582
22467
kvn
parents: 22466 21055
diff changeset
   583
      TESTED_TARGET_CPU_BITS=`expr 8 \* $ac_cv_sizeof_int_p`
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   584
22467
kvn
parents: 22466 21055
diff changeset
   585
      if test "x$TESTED_TARGET_CPU_BITS" != "x$OPENJDK_TARGET_CPU_BITS"; then
32809
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   586
        AC_MSG_NOTICE([The tested number of bits in the target ($TESTED_TARGET_CPU_BITS) differs from the number of bits expected to be found in the target ($OPENJDK_TARGET_CPU_BITS)])
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   587
        if test "x$COMPILE_TYPE" = xreduced; then
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   588
          HELP_MSG_MISSING_DEPENDENCY([reduced])
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   589
          AC_MSG_NOTICE([You are doing a reduced build. Check that you have 32-bit libraries installed. $HELP_MSG])
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   590
        elif test "x$COMPILE_TYPE" = xcross; then
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   591
          AC_MSG_NOTICE([You are doing a cross-compilation. Check that you have all target platform libraries installed.])
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   592
        fi
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   593
        AC_MSG_ERROR([Cannot continue.])
22467
kvn
parents: 22466 21055
diff changeset
   594
      fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   595
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   596
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   597
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   598
  AC_MSG_CHECKING([for target address size])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   599
  AC_MSG_RESULT([$OPENJDK_TARGET_CPU_BITS bits])
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   600
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   601
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   602
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   603
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   604
  ###############################################################################
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   605
  #
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   606
  # Is the target little of big endian?
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   607
  #
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   608
  AC_C_BIGENDIAN([ENDIAN="big"],[ENDIAN="little"],[ENDIAN="unknown"],[ENDIAN="universal_endianness"])
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   609
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   610
  if test "x$ENDIAN" = xuniversal_endianness; then
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   611
    AC_MSG_ERROR([Building with both big and little endianness is not supported])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   612
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   613
  if test "x$ENDIAN" != "x$OPENJDK_TARGET_CPU_ENDIAN"; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   614
    AC_MSG_ERROR([The tested endian in the target ($ENDIAN) differs from the endian expected to be found in the target ($OPENJDK_TARGET_CPU_ENDIAN)])
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   615
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   616
])