make/autoconf/platform.m4
author glaubitz
Mon, 26 Mar 2018 10:03:31 +0200
changeset 49598 566f1621a4a0
parent 49120 c04d813140dc
child 49679 7084eec5c723
permissions -rw-r--r--
8200203: Missing platform definitions for ia64 Reviewed-by: ihse, stuefe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
49120
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
     2
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
12258
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
      ;;
46932
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    45
    alpha*)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    46
      VAR_CPU=alpha
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    47
      VAR_CPU_ARCH=alpha
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    48
      VAR_CPU_BITS=64
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    49
      VAR_CPU_ENDIAN=little
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    50
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    51
    arm*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    52
      VAR_CPU=arm
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    53
      VAR_CPU_ARCH=arm
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    54
      VAR_CPU_BITS=32
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
    55
      VAR_CPU_ENDIAN=little
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    56
      ;;
29161
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    57
    aarch64)
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    58
      VAR_CPU=aarch64
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    59
      VAR_CPU_ARCH=aarch64
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    60
      VAR_CPU_BITS=64
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    61
      VAR_CPU_ENDIAN=little
11faf16b91c8 8064357: AARCH64: Top-level JDK changes
aph
parents: 25882
diff changeset
    62
      ;;
49598
566f1621a4a0 8200203: Missing platform definitions for ia64
glaubitz
parents: 49120
diff changeset
    63
    ia64)
566f1621a4a0 8200203: Missing platform definitions for ia64
glaubitz
parents: 49120
diff changeset
    64
      VAR_CPU=ia64
566f1621a4a0 8200203: Missing platform definitions for ia64
glaubitz
parents: 49120
diff changeset
    65
      VAR_CPU_ARCH=ia64
566f1621a4a0 8200203: Missing platform definitions for ia64
glaubitz
parents: 49120
diff changeset
    66
      VAR_CPU_BITS=64
566f1621a4a0 8200203: Missing platform definitions for ia64
glaubitz
parents: 49120
diff changeset
    67
      VAR_CPU_ENDIAN=little
566f1621a4a0 8200203: Missing platform definitions for ia64
glaubitz
parents: 49120
diff changeset
    68
      ;;
46932
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    69
    m68k)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    70
      VAR_CPU=m68k
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    71
      VAR_CPU_ARCH=m68k
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    72
      VAR_CPU_BITS=32
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    73
      VAR_CPU_ENDIAN=big
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    74
      ;;
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    75
    mips)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    76
      VAR_CPU=mips
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    77
      VAR_CPU_ARCH=mips
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    78
      VAR_CPU_BITS=32
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    79
      VAR_CPU_ENDIAN=big
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    80
      ;;
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    81
    mipsel)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    82
      VAR_CPU=mipsel
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    83
      VAR_CPU_ARCH=mipsel
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    84
      VAR_CPU_BITS=32
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    85
      VAR_CPU_ENDIAN=little
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    86
      ;;
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    87
    mips64)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    88
      VAR_CPU=mips64
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    89
      VAR_CPU_ARCH=mips64
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    90
      VAR_CPU_BITS=64
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    91
      VAR_CPU_ENDIAN=big
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    92
      ;;
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    93
    mips64el)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    94
      VAR_CPU=mips64el
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    95
      VAR_CPU_ARCH=mips64el
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    96
      VAR_CPU_BITS=64
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    97
      VAR_CPU_ENDIAN=little
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
    98
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    99
    powerpc)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   100
      VAR_CPU=ppc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   101
      VAR_CPU_ARCH=ppc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   102
      VAR_CPU_BITS=32
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   103
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   104
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   105
    powerpc64)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   106
      VAR_CPU=ppc64
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   107
      VAR_CPU_ARCH=ppc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   108
      VAR_CPU_BITS=64
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   109
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   110
      ;;
23437
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
   111
    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
   112
      VAR_CPU=ppc64le
23437
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
   113
      VAR_CPU_ARCH=ppc
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
   114
      VAR_CPU_BITS=64
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
   115
      VAR_CPU_ENDIAN=little
e3f4c0b99422 8036767: PPC64: Support for little endian execution model
kvn
parents: 22467
diff changeset
   116
      ;;
19676
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   117
    s390)
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   118
      VAR_CPU=s390
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   119
      VAR_CPU_ARCH=s390
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   120
      VAR_CPU_BITS=32
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   121
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   122
      ;;
19676
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   123
    s390x)
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   124
      VAR_CPU=s390x
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   125
      VAR_CPU_ARCH=s390
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   126
      VAR_CPU_BITS=64
2c525ed65d4c 8024320: Add s390(x) detection to platform.m4
omajid
parents: 19260
diff changeset
   127
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   128
      ;;
46932
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   129
    sh*eb)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   130
      VAR_CPU=sh
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   131
      VAR_CPU_ARCH=sh
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   132
      VAR_CPU_BITS=32
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   133
      VAR_CPU_ENDIAN=big
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   134
      ;;
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   135
    sh*)
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   136
      VAR_CPU=sh
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   137
      VAR_CPU_ARCH=sh
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   138
      VAR_CPU_BITS=32
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   139
      VAR_CPU_ENDIAN=little
a4fa3280b8df 8186313: Additional platform definitions to support Zero builds
glaubitz
parents: 44985
diff changeset
   140
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   141
    sparc)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   142
      VAR_CPU=sparc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   143
      VAR_CPU_ARCH=sparc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   144
      VAR_CPU_BITS=32
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   145
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   146
      ;;
25040
09052d7f1467 8047763: Recognize sparc64 as a sparc platform
mikael
parents: 23437
diff changeset
   147
    sparcv9|sparc64)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   148
      VAR_CPU=sparcv9
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   149
      VAR_CPU_ARCH=sparc
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   150
      VAR_CPU_BITS=64
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   151
      VAR_CPU_ENDIAN=big
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   152
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   153
    *)
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   154
      AC_MSG_ERROR([unsupported cpu $1])
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   155
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   156
  esac
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   157
])
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   158
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   159
# Support macro for PLATFORM_EXTRACT_TARGET_AND_BUILD.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   160
# 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
   161
# VAR_OS, VAR_OS_TYPE and VAR_OS_ENV.
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   162
AC_DEFUN([PLATFORM_EXTRACT_VARS_FROM_OS],
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   163
[
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   164
  case "$1" in
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   165
    *linux*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   166
      VAR_OS=linux
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   167
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   168
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   169
    *solaris*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   170
      VAR_OS=solaris
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   171
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   172
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   173
    *darwin*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   174
      VAR_OS=macosx
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   175
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   176
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   177
    *bsd*)
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   178
      VAR_OS=bsd
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   179
      VAR_OS_TYPE=unix
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   180
      ;;
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   181
    *cygwin*)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   182
      VAR_OS=windows
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   183
      VAR_OS_ENV=windows.cygwin
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   184
      ;;
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   185
    *mingw*)
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   186
      VAR_OS=windows
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   187
      VAR_OS_ENV=windows.msys
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   188
      ;;
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   189
    *aix*)
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   190
      VAR_OS=aix
27586
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   191
      VAR_OS_TYPE=unix
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   192
      ;;
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   193
    *)
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   194
      AC_MSG_ERROR([unsupported operating system $1])
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   195
      ;;
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   196
  esac
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   197
])
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   198
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   199
# Expects $host_os $host_cpu $build_os and $build_cpu
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   200
# and $with_target_bits to have been setup!
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   201
#
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   202
# Translate the standard triplet(quadruplet) definition
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   203
# of the target/build system into OPENJDK_TARGET_OS, OPENJDK_TARGET_CPU,
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   204
# OPENJDK_BUILD_OS, etc.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   205
AC_DEFUN([PLATFORM_EXTRACT_TARGET_AND_BUILD],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   206
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   207
  # Copy the autoconf trip/quadruplet verbatim to OPENJDK_TARGET_AUTOCONF_NAME
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   208
  # (from the autoconf "host") and OPENJDK_BUILD_AUTOCONF_NAME
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   209
  # 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
   210
  # 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
   211
  OPENJDK_TARGET_AUTOCONF_NAME="$host"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   212
  OPENJDK_BUILD_AUTOCONF_NAME="$build"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   213
  AC_SUBST(OPENJDK_TARGET_AUTOCONF_NAME)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   214
  AC_SUBST(OPENJDK_BUILD_AUTOCONF_NAME)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   215
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   216
  # 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
   217
  PLATFORM_EXTRACT_VARS_FROM_OS($build_os)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   218
  PLATFORM_EXTRACT_VARS_FROM_CPU($build_cpu)
42300
218374d35efd 8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents: 40619
diff changeset
   219
  # ..and setup our own variables. (Do this explicitly to facilitate searching)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   220
  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
   221
  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
   222
    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
   223
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   224
    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
   225
  fi
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   226
  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
   227
    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
   228
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   229
    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
   230
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   231
  OPENJDK_BUILD_CPU="$VAR_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   232
  OPENJDK_BUILD_CPU_ARCH="$VAR_CPU_ARCH"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   233
  OPENJDK_BUILD_CPU_BITS="$VAR_CPU_BITS"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   234
  OPENJDK_BUILD_CPU_ENDIAN="$VAR_CPU_ENDIAN"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   235
  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
   236
  AC_SUBST(OPENJDK_BUILD_OS_TYPE)
25882
bd4315f0084b 8022177: Windows/MSYS builds broken
erikj
parents: 25854
diff changeset
   237
  AC_SUBST(OPENJDK_BUILD_OS_ENV)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   238
  AC_SUBST(OPENJDK_BUILD_CPU)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   239
  AC_SUBST(OPENJDK_BUILD_CPU_ARCH)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   240
  AC_SUBST(OPENJDK_BUILD_CPU_BITS)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   241
  AC_SUBST(OPENJDK_BUILD_CPU_ENDIAN)
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   242
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   243
  AC_MSG_CHECKING([openjdk-build os-cpu])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   244
  AC_MSG_RESULT([$OPENJDK_BUILD_OS-$OPENJDK_BUILD_CPU])
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   245
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   246
  # 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
   247
  PLATFORM_EXTRACT_VARS_FROM_OS($host_os)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   248
  PLATFORM_EXTRACT_VARS_FROM_CPU($host_cpu)
42300
218374d35efd 8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents: 40619
diff changeset
   249
  # ... and setup our own variables. (Do this explicitly to facilitate searching)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   250
  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
   251
  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
   252
    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
   253
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   254
    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
   255
  fi
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   256
  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
   257
    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
   258
  else
e7cfdc266a70 8058631: Rename posix to unix in build system to match file name changes
ihse
parents: 25882
diff changeset
   259
    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
   260
  fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   261
  OPENJDK_TARGET_CPU="$VAR_CPU"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   262
  OPENJDK_TARGET_CPU_ARCH="$VAR_CPU_ARCH"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   263
  OPENJDK_TARGET_CPU_BITS="$VAR_CPU_BITS"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   264
  OPENJDK_TARGET_CPU_ENDIAN="$VAR_CPU_ENDIAN"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   265
  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
   266
  AC_SUBST(OPENJDK_TARGET_OS_TYPE)
25882
bd4315f0084b 8022177: Windows/MSYS builds broken
erikj
parents: 25854
diff changeset
   267
  AC_SUBST(OPENJDK_TARGET_OS_ENV)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   268
  AC_SUBST(OPENJDK_TARGET_CPU)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   269
  AC_SUBST(OPENJDK_TARGET_CPU_ARCH)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   270
  AC_SUBST(OPENJDK_TARGET_CPU_BITS)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   271
  AC_SUBST(OPENJDK_TARGET_CPU_ENDIAN)
13697
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
  AC_MSG_CHECKING([openjdk-target os-cpu])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   274
  AC_MSG_RESULT([$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   275
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   276
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   277
# 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
   278
# 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
   279
# doing anything else with these values.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   280
AC_DEFUN([PLATFORM_SETUP_TARGET_CPU_BITS],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   281
[
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   282
  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
   283
       [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
   284
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   285
  # We have three types of compiles:
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   286
  # native  == normal compilation, target system == build system
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   287
  # cross   == traditional cross compilation, target system != build system; special toolchain needed
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   288
  # 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
   289
  #
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   290
  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
   291
    # We're doing a proper cross-compilation
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   292
    COMPILE_TYPE="cross"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   293
  else
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   294
    COMPILE_TYPE="native"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   295
  fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   296
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   297
  if test "x$with_target_bits" != x; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   298
    if test "x$COMPILE_TYPE" = "xcross"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   299
      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
   300
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   301
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   302
    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
   303
      # A reduced build is requested
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   304
      COMPILE_TYPE="reduced"
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   305
      OPENJDK_TARGET_CPU_BITS=32
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   306
      if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   307
        OPENJDK_TARGET_CPU=x86
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   308
      elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   309
        OPENJDK_TARGET_CPU=sparc
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   310
      else
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   311
        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
   312
      fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   313
    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
   314
      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
   315
    elif test "x$with_target_bits" = "x$OPENJDK_TARGET_CPU_BITS"; then
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   316
      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
   317
    else
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   318
      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
   319
    fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   320
  fi
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   321
  AC_SUBST(COMPILE_TYPE)
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   322
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   323
  AC_MSG_CHECKING([compilation type])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   324
  AC_MSG_RESULT([$COMPILE_TYPE])
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   325
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   326
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   327
# Setup the legacy variables, for controlling the old makefiles.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   328
#
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   329
AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS],
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   330
[
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   331
  PLATFORM_SETUP_LEGACY_VARS_HELPER([TARGET])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   332
  PLATFORM_SETUP_LEGACY_VARS_HELPER([BUILD])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   333
])
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   334
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   335
# $1 - Either TARGET or BUILD to setup the variables for.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   336
AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS_HELPER],
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   337
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   338
  # Also store the legacy naming of the cpu.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   339
  # Ie i586 and amd64 instead of x86 and x86_64
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   340
  OPENJDK_$1_CPU_LEGACY="$OPENJDK_$1_CPU"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   341
  if test "x$OPENJDK_$1_CPU" = xx86; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   342
    OPENJDK_$1_CPU_LEGACY="i586"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   343
  elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   344
    # On all platforms except MacOSX replace x86_64 with amd64.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   345
    OPENJDK_$1_CPU_LEGACY="amd64"
46938
a8488a8b37fb 8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents: 46932
diff changeset
   346
  elif test "x$OPENJDK_$1_CPU" = xalpha; then
a8488a8b37fb 8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents: 46932
diff changeset
   347
    # Avoid name collisions with variables named alpha
a8488a8b37fb 8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents: 46932
diff changeset
   348
    OPENJDK_$1_CPU_LEGACY="_alpha_"
a8488a8b37fb 8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents: 46932
diff changeset
   349
  elif test "x$OPENJDK_$1_CPU" = xsh; then
a8488a8b37fb 8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents: 46932
diff changeset
   350
    # Avoid name collisions with variables named sh
a8488a8b37fb 8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents: 46932
diff changeset
   351
    OPENJDK_$1_CPU_LEGACY="_sh_"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   352
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   353
  AC_SUBST(OPENJDK_$1_CPU_LEGACY)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   354
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   355
  # And the second legacy naming of the cpu.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   356
  # Ie i386 and amd64 instead of x86 and x86_64.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   357
  OPENJDK_$1_CPU_LEGACY_LIB="$OPENJDK_$1_CPU"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   358
  if test "x$OPENJDK_$1_CPU" = xx86; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   359
    OPENJDK_$1_CPU_LEGACY_LIB="i386"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   360
  elif test "x$OPENJDK_$1_CPU" = xx86_64; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   361
    OPENJDK_$1_CPU_LEGACY_LIB="amd64"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   362
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   363
  AC_SUBST(OPENJDK_$1_CPU_LEGACY_LIB)
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36294
diff changeset
   364
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   365
  # OPENJDK_$1_CPU_ISADIR is normally empty. On 64-bit Solaris systems, it is set to
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   366
  # /amd64 or /sparcv9. This string is appended to some library paths, like this:
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   367
  # /usr/lib${OPENJDK_$1_CPU_ISADIR}/libexample.so
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   368
  OPENJDK_$1_CPU_ISADIR=""
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   369
  if test "x$OPENJDK_$1_OS" = xsolaris; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   370
    if test "x$OPENJDK_$1_CPU" = xx86_64; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   371
      OPENJDK_$1_CPU_ISADIR="/amd64"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   372
    elif test "x$OPENJDK_$1_CPU" = xsparcv9; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   373
      OPENJDK_$1_CPU_ISADIR="/sparcv9"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   374
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   375
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   376
  AC_SUBST(OPENJDK_$1_CPU_ISADIR)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   377
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   378
  # Setup OPENJDK_$1_CPU_OSARCH, which is used to set the os.arch Java system property
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   379
  OPENJDK_$1_CPU_OSARCH="$OPENJDK_$1_CPU"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   380
  if test "x$OPENJDK_$1_OS" = xlinux && test "x$OPENJDK_$1_CPU" = xx86; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   381
    # On linux only, we replace x86 with i386.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   382
    OPENJDK_$1_CPU_OSARCH="i386"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   383
  elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   384
    # On all platforms except macosx, we replace x86_64 with amd64.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   385
    OPENJDK_$1_CPU_OSARCH="amd64"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   386
  fi
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   387
  AC_SUBST(OPENJDK_$1_CPU_OSARCH)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   388
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   389
  OPENJDK_$1_CPU_JLI="$OPENJDK_$1_CPU"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   390
  if test "x$OPENJDK_$1_CPU" = xx86; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   391
    OPENJDK_$1_CPU_JLI="i386"
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   392
  elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   393
    # On all platforms except macosx, we replace x86_64 with amd64.
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   394
    OPENJDK_$1_CPU_JLI="amd64"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   395
  fi
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   396
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   397
  # The new version string in JDK 9 also defined new naming of OS and ARCH for bundles
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   398
  # Macosx is osx and x86_64 is x64
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   399
  if test "x$OPENJDK_$1_OS" = xmacosx; then
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   400
    OPENJDK_$1_OS_BUNDLE="osx"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   401
  else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   402
    OPENJDK_$1_OS_BUNDLE="$OPENJDK_TARGET_OS"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   403
  fi
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   404
  if test "x$OPENJDK_$1_CPU" = xx86_64; then
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   405
    OPENJDK_$1_CPU_BUNDLE="x64"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   406
  else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   407
    OPENJDK_$1_CPU_BUNDLE="$OPENJDK_$1_CPU"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   408
  fi
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   409
  OPENJDK_$1_BUNDLE_PLATFORM="${OPENJDK_$1_OS_BUNDLE}-${OPENJDK_$1_CPU_BUNDLE}"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   410
  AC_SUBST(OPENJDK_$1_BUNDLE_PLATFORM)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37658
diff changeset
   411
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   412
  if test "x$COMPILE_TYPE" = "xcross"; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   413
    # FIXME: ... or should this include reduced builds..?
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   414
    DEFINE_CROSS_COMPILE_ARCH="CROSS_COMPILE_ARCH:=$OPENJDK_$1_CPU_LEGACY"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   415
  else
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   416
    DEFINE_CROSS_COMPILE_ARCH=""
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   417
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   418
  AC_SUBST(DEFINE_CROSS_COMPILE_ARCH)
16581
b2cddec593f4 8011388: Support building zero and zeroshark with the new build
omajid
parents: 14111
diff changeset
   419
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   420
  # Convert openjdk platform names to hotspot names
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   421
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   422
  HOTSPOT_$1_OS=${OPENJDK_$1_OS}
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   423
  if test "x$OPENJDK_$1_OS" = xmacosx; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   424
    HOTSPOT_$1_OS=bsd
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   425
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   426
  AC_SUBST(HOTSPOT_$1_OS)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   427
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   428
  HOTSPOT_$1_OS_TYPE=${OPENJDK_$1_OS_TYPE}
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   429
  if test "x$OPENJDK_$1_OS_TYPE" = xunix; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   430
    HOTSPOT_$1_OS_TYPE=posix
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   431
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   432
  AC_SUBST(HOTSPOT_$1_OS_TYPE)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   433
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   434
  HOTSPOT_$1_CPU=${OPENJDK_$1_CPU}
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   435
  if test "x$OPENJDK_$1_CPU" = xx86; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   436
    HOTSPOT_$1_CPU=x86_32
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   437
  elif test "x$OPENJDK_$1_CPU" = xsparcv9; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   438
    HOTSPOT_$1_CPU=sparc
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   439
  elif test "x$OPENJDK_$1_CPU" = xppc64; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   440
    HOTSPOT_$1_CPU=ppc_64
37404
1ab1c5c6cd5a 8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents: 37402
diff changeset
   441
  elif test "x$OPENJDK_$1_CPU" = xppc64le; then
1ab1c5c6cd5a 8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents: 37402
diff changeset
   442
    HOTSPOT_$1_CPU=ppc_64
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   443
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   444
  AC_SUBST(HOTSPOT_$1_CPU)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   445
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   446
  # This is identical with OPENJDK_*, but define anyway for consistency.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   447
  HOTSPOT_$1_CPU_ARCH=${OPENJDK_$1_CPU_ARCH}
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   448
  AC_SUBST(HOTSPOT_$1_CPU_ARCH)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   449
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   450
  # Setup HOTSPOT_$1_CPU_DEFINE
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   451
  if test "x$OPENJDK_$1_CPU" = xx86; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   452
    HOTSPOT_$1_CPU_DEFINE=IA32
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   453
  elif test "x$OPENJDK_$1_CPU" = xx86_64; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   454
    HOTSPOT_$1_CPU_DEFINE=AMD64
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   455
  elif test "x$OPENJDK_$1_CPU" = xsparcv9; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   456
    HOTSPOT_$1_CPU_DEFINE=SPARC
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   457
  elif test "x$OPENJDK_$1_CPU" = xaarch64; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   458
    HOTSPOT_$1_CPU_DEFINE=AARCH64
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   459
  elif test "x$OPENJDK_$1_CPU" = xppc64; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   460
    HOTSPOT_$1_CPU_DEFINE=PPC64
37404
1ab1c5c6cd5a 8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents: 37402
diff changeset
   461
  elif test "x$OPENJDK_$1_CPU" = xppc64le; then
1ab1c5c6cd5a 8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents: 37402
diff changeset
   462
    HOTSPOT_$1_CPU_DEFINE=PPC64
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   463
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   464
  # The cpu defines below are for zero, we don't support them directly.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   465
  elif test "x$OPENJDK_$1_CPU" = xsparc; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   466
    HOTSPOT_$1_CPU_DEFINE=SPARC
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   467
  elif test "x$OPENJDK_$1_CPU" = xppc; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   468
    HOTSPOT_$1_CPU_DEFINE=PPC32
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   469
  elif test "x$OPENJDK_$1_CPU" = xs390; then
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   470
    HOTSPOT_$1_CPU_DEFINE=S390
37658
3ee7b86a4571 8155821: Typo for s390x for HOTSPOT__CPU_DEFINE
erikj
parents: 37404
diff changeset
   471
  elif test "x$OPENJDK_$1_CPU" = xs390x; then
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   472
    HOTSPOT_$1_CPU_DEFINE=S390
40619
7ec316b9555d 8165158: Fix zero builds for non-listed architectures
erikj
parents: 37972
diff changeset
   473
  elif test "x$OPENJDK_$1_CPU" != x; then
7ec316b9555d 8165158: Fix zero builds for non-listed architectures
erikj
parents: 37972
diff changeset
   474
    HOTSPOT_$1_CPU_DEFINE=$(echo $OPENJDK_$1_CPU | tr a-z A-Z)
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   475
  fi
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   476
  AC_SUBST(HOTSPOT_$1_CPU_DEFINE)
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
   477
48355
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   478
  # For historical reasons, the OS include directories have odd names.
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   479
  OPENJDK_$1_OS_INCLUDE_SUBDIR="$OPENJDK_TARGET_OS"
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   480
  if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   481
    OPENJDK_$1_OS_INCLUDE_SUBDIR="win32"
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   482
  elif test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   483
    OPENJDK_$1_OS_INCLUDE_SUBDIR="darwin"
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   484
  fi
4944950606ef 8191913: Bump classfile version number to 55
psandoz
parents: 48300
diff changeset
   485
  AC_SUBST(OPENJDK_$1_OS_INCLUDE_SUBDIR)
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   486
])
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   487
44985
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   488
AC_DEFUN([PLATFORM_SET_RELEASE_FILE_OS_VALUES],
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   489
[
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   490
  if test "x$OPENJDK_TARGET_OS" = "xsolaris"; then
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   491
    RELEASE_FILE_OS_NAME=SunOS
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   492
  fi
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   493
  if test "x$OPENJDK_TARGET_OS" = "xlinux"; then
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   494
    RELEASE_FILE_OS_NAME=Linux
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   495
  fi
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   496
  if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   497
    RELEASE_FILE_OS_NAME=Windows
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   498
  fi
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   499
  if test "x$OPENJDK_TARGET_OS" = xmacosx; then
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   500
    RELEASE_FILE_OS_NAME="Darwin"
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   501
  fi
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   502
  if test "x$OPENJDK_TARGET_OS" = "xaix"; then
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   503
    RELEASE_FILE_OS_NAME="AIX"
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   504
  fi
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   505
  RELEASE_FILE_OS_ARCH=${OPENJDK_TARGET_CPU}
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   506
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   507
  AC_SUBST(RELEASE_FILE_OS_NAME)
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   508
  AC_SUBST(RELEASE_FILE_OS_ARCH)
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   509
])
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   510
44729
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   511
AC_DEFUN([PLATFORM_SET_MODULE_TARGET_OS_VALUES],
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   512
[
44729
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   513
  if test "x$OPENJDK_TARGET_OS" = xmacosx; then
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   514
    OPENJDK_MODULE_TARGET_OS_NAME="macos"
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   515
  else
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   516
    OPENJDK_MODULE_TARGET_OS_NAME="$OPENJDK_TARGET_OS"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   517
  fi
44729
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   518
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   519
  if test "x$OPENJDK_TARGET_CPU" = xx86_64; then
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   520
    OPENJDK_MODULE_TARGET_OS_ARCH="amd64"
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   521
  else
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   522
    OPENJDK_MODULE_TARGET_OS_ARCH="$OPENJDK_TARGET_CPU"
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   523
  fi
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   524
44985
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   525
  OPENJDK_MODULE_TARGET_PLATFORM="${OPENJDK_MODULE_TARGET_OS_NAME}-${OPENJDK_MODULE_TARGET_OS_ARCH}"
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   526
  AC_SUBST(OPENJDK_MODULE_TARGET_PLATFORM)
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   527
])
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   528
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   529
#%%% Build and target systems %%%
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   530
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   531
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   532
  # 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
   533
  # 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
   534
  # 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
   535
  # 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
   536
  # to use the configure naming style.
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   537
  AC_CANONICAL_BUILD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   538
  AC_CANONICAL_HOST
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   539
  AC_CANONICAL_TARGET
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   540
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   541
  PLATFORM_EXTRACT_TARGET_AND_BUILD
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   542
  PLATFORM_SETUP_TARGET_CPU_BITS
44729
c426e90f08d2 8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents: 44309
diff changeset
   543
  PLATFORM_SET_MODULE_TARGET_OS_VALUES
44985
54f298f9766a 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44729
diff changeset
   544
  PLATFORM_SET_RELEASE_FILE_OS_VALUES
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   545
  PLATFORM_SETUP_LEGACY_VARS
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   546
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   547
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   548
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   549
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   550
  ###############################################################################
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   551
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   552
  # Note that this is the build platform OS version!
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   553
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   554
  OS_VERSION="`uname -r | ${SED} 's!\.! !g' | ${SED} 's!-! !g'`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   555
  OS_VERSION_MAJOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 1 -d ' '`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   556
  OS_VERSION_MINOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 2 -d ' '`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   557
  OS_VERSION_MICRO="`${ECHO} ${OS_VERSION} | ${CUT} -f 3 -d ' '`"
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   558
  AC_SUBST(OS_VERSION_MAJOR)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   559
  AC_SUBST(OS_VERSION_MINOR)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   560
  AC_SUBST(OS_VERSION_MICRO)
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   561
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   562
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   563
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_BITS],
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   564
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   565
  ###############################################################################
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   566
  #
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   567
  # 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
   568
  # (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
   569
  # is made at runtime.)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   570
  #
16984
ba1791eeb074 8013480: fix zero build on arm
omajid
parents: 16581
diff changeset
   571
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   572
  # Make compilation sanity check
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   573
  AC_CHECK_HEADERS([stdio.h], , [
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   574
    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
   575
    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
   576
      HELP_MSG_MISSING_DEPENDENCY([reduced])
a24b5324b595 8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents: 29165
diff changeset
   577
      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
   578
    elif test "x$COMPILE_TYPE" = xcross; then
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   579
      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
   580
    fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   581
    AC_MSG_ERROR([Cannot continue.])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   582
  ])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   583
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   584
  AC_CHECK_SIZEOF([int *], [1111])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   585
22467
kvn
parents: 22466 21055
diff changeset
   586
  # 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
   587
  if test "x$ac_cv_sizeof_int_p" = x; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   588
    # The test failed, lets stick to the assumed value.
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   589
    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
   590
  else
22466
25aaf85d1ada 8024265: Enable new build on AIX
simonis
parents: 19260
diff changeset
   591
    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
   592
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   593
    if test "x$TESTED_TARGET_CPU_BITS" != "x$OPENJDK_TARGET_CPU_BITS"; then
49120
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   594
      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)])
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   595
      if test "x$COMPILE_TYPE" = xreduced; then
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   596
        HELP_MSG_MISSING_DEPENDENCY([reduced])
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   597
        AC_MSG_NOTICE([You are doing a reduced build. Check that you have 32-bit libraries installed. $HELP_MSG])
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   598
      elif test "x$COMPILE_TYPE" = xcross; then
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   599
        AC_MSG_NOTICE([You are doing a cross-compilation. Check that you have all target platform libraries installed.])
22467
kvn
parents: 22466 21055
diff changeset
   600
      fi
49120
c04d813140dc 8198724: Refactor FLAGS handling in configure
ihse
parents: 48355
diff changeset
   601
      AC_MSG_ERROR([Cannot continue.])
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   602
    fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   603
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   604
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   605
  AC_MSG_CHECKING([for target address size])
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   606
  AC_MSG_RESULT([$OPENJDK_TARGET_CPU_BITS bits])
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   607
])
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   608
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   609
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS],
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   610
[
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   611
  ###############################################################################
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   612
  #
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   613
  # Is the target little of big endian?
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   614
  #
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   615
  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
   616
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   617
  if test "x$ENDIAN" = xuniversal_endianness; then
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   618
    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
   619
  fi
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 19760
diff changeset
   620
  if test "x$ENDIAN" != "x$OPENJDK_TARGET_CPU_ENDIAN"; then
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13132
diff changeset
   621
    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
   622
  fi
13132
bd88bb8dd3af 7181504: Update of latest build-infra Makefiles
erikj
parents: 12801
diff changeset
   623
])