author | dchuyko |
Tue, 19 Jun 2018 18:18:46 +0300 | |
changeset 50642 | fff48b02d4a6 |
parent 49679 | 7084eec5c723 |
child 51641 | 9ce4a0d718c7 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
49120 | 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 | 26 |
# Support macro for PLATFORM_EXTRACT_TARGET_AND_BUILD. |
27 |
# Converts autoconf style CPU name to OpenJDK style, into |
|
28 |
# VAR_CPU, VAR_CPU_ARCH, VAR_CPU_BITS and VAR_CPU_ENDIAN. |
|
13132 | 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 | 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 | 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 | 54 |
VAR_CPU_BITS=32 |
55 |
VAR_CPU_ENDIAN=little |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
;; |
29161 | 57 |
aarch64) |
58 |
VAR_CPU=aarch64 |
|
59 |
VAR_CPU_ARCH=aarch64 |
|
60 |
VAR_CPU_BITS=64 |
|
61 |
VAR_CPU_ENDIAN=little |
|
62 |
;; |
|
49598 | 63 |
ia64) |
64 |
VAR_CPU=ia64 |
|
65 |
VAR_CPU_ARCH=ia64 |
|
66 |
VAR_CPU_BITS=64 |
|
67 |
VAR_CPU_ENDIAN=little |
|
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 | 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 | 109 |
VAR_CPU_ENDIAN=big |
20363 | 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 | 117 |
s390) |
118 |
VAR_CPU=s390 |
|
119 |
VAR_CPU_ARCH=s390 |
|
120 |
VAR_CPU_BITS=32 |
|
121 |
VAR_CPU_ENDIAN=big |
|
20363 | 122 |
;; |
19676 | 123 |
s390x) |
124 |
VAR_CPU=s390x |
|
125 |
VAR_CPU_ARCH=s390 |
|
126 |
VAR_CPU_BITS=64 |
|
127 |
VAR_CPU_ENDIAN=big |
|
20363 | 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 | 146 |
;; |
25040 | 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 | 152 |
;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
153 |
*) |
12801 | 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 | 159 |
# Support macro for PLATFORM_EXTRACT_TARGET_AND_BUILD. |
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 | 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 | 181 |
*cygwin*) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
182 |
VAR_OS=windows |
14111 | 183 |
VAR_OS_ENV=windows.cygwin |
184 |
;; |
|
185 |
*mingw*) |
|
186 |
VAR_OS=windows |
|
187 |
VAR_OS_ENV=windows.msys |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
188 |
;; |
22466 | 189 |
*aix*) |
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 | 192 |
;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
193 |
*) |
13132 | 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 | 199 |
# Expects $host_os $host_cpu $build_os and $build_cpu |
200 |
# and $with_target_bits to have been setup! |
|
201 |
# |
|
202 |
# Translate the standard triplet(quadruplet) definition |
|
203 |
# of the target/build system into OPENJDK_TARGET_OS, OPENJDK_TARGET_CPU, |
|
204 |
# OPENJDK_BUILD_OS, etc. |
|
205 |
AC_DEFUN([PLATFORM_EXTRACT_TARGET_AND_BUILD], |
|
206 |
[ |
|
20363 | 207 |
# Copy the autoconf trip/quadruplet verbatim to OPENJDK_TARGET_AUTOCONF_NAME |
208 |
# (from the autoconf "host") and OPENJDK_BUILD_AUTOCONF_NAME |
|
209 |
# Note that we might later on rewrite e.g. OPENJDK_TARGET_CPU due to reduced build, |
|
210 |
# but this will not change the value of OPENJDK_TARGET_AUTOCONF_NAME. |
|
211 |
OPENJDK_TARGET_AUTOCONF_NAME="$host" |
|
212 |
OPENJDK_BUILD_AUTOCONF_NAME="$build" |
|
213 |
AC_SUBST(OPENJDK_TARGET_AUTOCONF_NAME) |
|
214 |
AC_SUBST(OPENJDK_BUILD_AUTOCONF_NAME) |
|
13697 | 215 |
|
20363 | 216 |
# Convert the autoconf OS/CPU value to our own data, into the VAR_OS/CPU variables. |
217 |
PLATFORM_EXTRACT_VARS_FROM_OS($build_os) |
|
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 | 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 | 231 |
OPENJDK_BUILD_CPU="$VAR_CPU" |
232 |
OPENJDK_BUILD_CPU_ARCH="$VAR_CPU_ARCH" |
|
233 |
OPENJDK_BUILD_CPU_BITS="$VAR_CPU_BITS" |
|
234 |
OPENJDK_BUILD_CPU_ENDIAN="$VAR_CPU_ENDIAN" |
|
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 | 237 |
AC_SUBST(OPENJDK_BUILD_OS_ENV) |
20363 | 238 |
AC_SUBST(OPENJDK_BUILD_CPU) |
239 |
AC_SUBST(OPENJDK_BUILD_CPU_ARCH) |
|
240 |
AC_SUBST(OPENJDK_BUILD_CPU_BITS) |
|
241 |
AC_SUBST(OPENJDK_BUILD_CPU_ENDIAN) |
|
14111 | 242 |
|
20363 | 243 |
AC_MSG_CHECKING([openjdk-build os-cpu]) |
244 |
AC_MSG_RESULT([$OPENJDK_BUILD_OS-$OPENJDK_BUILD_CPU]) |
|
14111 | 245 |
|
20363 | 246 |
# Convert the autoconf OS/CPU value to our own data, into the VAR_OS/CPU variables. |
247 |
PLATFORM_EXTRACT_VARS_FROM_OS($host_os) |
|
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 | 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 | 261 |
OPENJDK_TARGET_CPU="$VAR_CPU" |
262 |
OPENJDK_TARGET_CPU_ARCH="$VAR_CPU_ARCH" |
|
263 |
OPENJDK_TARGET_CPU_BITS="$VAR_CPU_BITS" |
|
264 |
OPENJDK_TARGET_CPU_ENDIAN="$VAR_CPU_ENDIAN" |
|
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49120
diff
changeset
|
265 |
OPENJDK_TARGET_OS_UPPERCASE=`$ECHO $OPENJDK_TARGET_OS | $TR 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49120
diff
changeset
|
266 |
|
20363 | 267 |
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
|
268 |
AC_SUBST(OPENJDK_TARGET_OS_TYPE) |
25882 | 269 |
AC_SUBST(OPENJDK_TARGET_OS_ENV) |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49120
diff
changeset
|
270 |
AC_SUBST(OPENJDK_TARGET_OS_UPPERCASE) |
20363 | 271 |
AC_SUBST(OPENJDK_TARGET_CPU) |
272 |
AC_SUBST(OPENJDK_TARGET_CPU_ARCH) |
|
273 |
AC_SUBST(OPENJDK_TARGET_CPU_BITS) |
|
274 |
AC_SUBST(OPENJDK_TARGET_CPU_ENDIAN) |
|
13697 | 275 |
|
20363 | 276 |
AC_MSG_CHECKING([openjdk-target os-cpu]) |
277 |
AC_MSG_RESULT([$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU]) |
|
13697 | 278 |
]) |
279 |
||
280 |
# Check if a reduced build (32-bit on 64-bit platforms) is requested, and modify behaviour |
|
281 |
# accordingly. Must be done after setting up build and target system, but before |
|
282 |
# doing anything else with these values. |
|
283 |
AC_DEFUN([PLATFORM_SETUP_TARGET_CPU_BITS], |
|
284 |
[ |
|
285 |
AC_ARG_WITH(target-bits, [AS_HELP_STRING([--with-target-bits], |
|
20363 | 286 |
[build 32-bit or 64-bit binaries (for platforms that support it), e.g. --with-target-bits=32 @<:@guessed@:>@])]) |
13697 | 287 |
|
288 |
# We have three types of compiles: |
|
289 |
# native == normal compilation, target system == build system |
|
290 |
# cross == traditional cross compilation, target system != build system; special toolchain needed |
|
291 |
# reduced == using native compilers, but with special flags (e.g. -m32) to produce 32-bit builds on 64-bit machines |
|
292 |
# |
|
293 |
if test "x$OPENJDK_BUILD_AUTOCONF_NAME" != "x$OPENJDK_TARGET_AUTOCONF_NAME"; then |
|
294 |
# We're doing a proper cross-compilation |
|
295 |
COMPILE_TYPE="cross" |
|
296 |
else |
|
297 |
COMPILE_TYPE="native" |
|
298 |
fi |
|
299 |
||
300 |
if test "x$with_target_bits" != x; then |
|
301 |
if test "x$COMPILE_TYPE" = "xcross"; then |
|
302 |
AC_MSG_ERROR([It is not possible to combine --with-target-bits=X and proper cross-compilation. Choose either.]) |
|
303 |
fi |
|
304 |
||
305 |
if test "x$with_target_bits" = x32 && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
|
306 |
# A reduced build is requested |
|
307 |
COMPILE_TYPE="reduced" |
|
308 |
OPENJDK_TARGET_CPU_BITS=32 |
|
309 |
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86"; then |
|
310 |
OPENJDK_TARGET_CPU=x86 |
|
311 |
elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then |
|
312 |
OPENJDK_TARGET_CPU=sparc |
|
313 |
else |
|
314 |
AC_MSG_ERROR([Reduced build (--with-target-bits=32) is only supported on x86_64 and sparcv9]) |
|
20363 | 315 |
fi |
13697 | 316 |
elif test "x$with_target_bits" = x64 && test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
317 |
AC_MSG_ERROR([It is not possible to use --with-target-bits=64 on a 32 bit system. Use proper cross-compilation instead.]) |
|
318 |
elif test "x$with_target_bits" = "x$OPENJDK_TARGET_CPU_BITS"; then |
|
319 |
AC_MSG_NOTICE([--with-target-bits are set to build platform address size; argument has no meaning]) |
|
320 |
else |
|
321 |
AC_MSG_ERROR([--with-target-bits can only be 32 or 64, you specified $with_target_bits!]) |
|
322 |
fi |
|
323 |
fi |
|
324 |
AC_SUBST(COMPILE_TYPE) |
|
325 |
||
20363 | 326 |
AC_MSG_CHECKING([compilation type]) |
327 |
AC_MSG_RESULT([$COMPILE_TYPE]) |
|
13697 | 328 |
]) |
329 |
||
20363 | 330 |
# Setup the legacy variables, for controlling the old makefiles. |
331 |
# |
|
13697 | 332 |
AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS], |
333 |
[ |
|
37402 | 334 |
PLATFORM_SETUP_LEGACY_VARS_HELPER([TARGET]) |
335 |
PLATFORM_SETUP_LEGACY_VARS_HELPER([BUILD]) |
|
336 |
]) |
|
337 |
||
338 |
# $1 - Either TARGET or BUILD to setup the variables for. |
|
339 |
AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS_HELPER], |
|
340 |
[ |
|
20363 | 341 |
# Also store the legacy naming of the cpu. |
342 |
# Ie i586 and amd64 instead of x86 and x86_64 |
|
37402 | 343 |
OPENJDK_$1_CPU_LEGACY="$OPENJDK_$1_CPU" |
344 |
if test "x$OPENJDK_$1_CPU" = xx86; then |
|
345 |
OPENJDK_$1_CPU_LEGACY="i586" |
|
346 |
elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
20363 | 347 |
# On all platforms except MacOSX replace x86_64 with amd64. |
37402 | 348 |
OPENJDK_$1_CPU_LEGACY="amd64" |
46938
a8488a8b37fb
8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents:
46932
diff
changeset
|
349 |
elif test "x$OPENJDK_$1_CPU" = xalpha; then |
a8488a8b37fb
8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents:
46932
diff
changeset
|
350 |
# Avoid name collisions with variables named alpha |
a8488a8b37fb
8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents:
46932
diff
changeset
|
351 |
OPENJDK_$1_CPU_LEGACY="_alpha_" |
a8488a8b37fb
8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents:
46932
diff
changeset
|
352 |
elif test "x$OPENJDK_$1_CPU" = xsh; then |
a8488a8b37fb
8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents:
46932
diff
changeset
|
353 |
# Avoid name collisions with variables named sh |
a8488a8b37fb
8186786: Name collisions with autoconf definitions on alpha and sh
glaubitz
parents:
46932
diff
changeset
|
354 |
OPENJDK_$1_CPU_LEGACY="_sh_" |
20363 | 355 |
fi |
37402 | 356 |
AC_SUBST(OPENJDK_$1_CPU_LEGACY) |
13697 | 357 |
|
20363 | 358 |
# And the second legacy naming of the cpu. |
359 |
# Ie i386 and amd64 instead of x86 and x86_64. |
|
37402 | 360 |
OPENJDK_$1_CPU_LEGACY_LIB="$OPENJDK_$1_CPU" |
361 |
if test "x$OPENJDK_$1_CPU" = xx86; then |
|
362 |
OPENJDK_$1_CPU_LEGACY_LIB="i386" |
|
363 |
elif test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
364 |
OPENJDK_$1_CPU_LEGACY_LIB="amd64" |
|
20363 | 365 |
fi |
37402 | 366 |
AC_SUBST(OPENJDK_$1_CPU_LEGACY_LIB) |
36506 | 367 |
|
37402 | 368 |
# OPENJDK_$1_CPU_ISADIR is normally empty. On 64-bit Solaris systems, it is set to |
20363 | 369 |
# /amd64 or /sparcv9. This string is appended to some library paths, like this: |
37402 | 370 |
# /usr/lib${OPENJDK_$1_CPU_ISADIR}/libexample.so |
371 |
OPENJDK_$1_CPU_ISADIR="" |
|
372 |
if test "x$OPENJDK_$1_OS" = xsolaris; then |
|
373 |
if test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
374 |
OPENJDK_$1_CPU_ISADIR="/amd64" |
|
375 |
elif test "x$OPENJDK_$1_CPU" = xsparcv9; then |
|
376 |
OPENJDK_$1_CPU_ISADIR="/sparcv9" |
|
13697 | 377 |
fi |
20363 | 378 |
fi |
37402 | 379 |
AC_SUBST(OPENJDK_$1_CPU_ISADIR) |
13697 | 380 |
|
37402 | 381 |
# Setup OPENJDK_$1_CPU_OSARCH, which is used to set the os.arch Java system property |
382 |
OPENJDK_$1_CPU_OSARCH="$OPENJDK_$1_CPU" |
|
383 |
if test "x$OPENJDK_$1_OS" = xlinux && test "x$OPENJDK_$1_CPU" = xx86; then |
|
20363 | 384 |
# On linux only, we replace x86 with i386. |
37402 | 385 |
OPENJDK_$1_CPU_OSARCH="i386" |
386 |
elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
20363 | 387 |
# On all platforms except macosx, we replace x86_64 with amd64. |
37402 | 388 |
OPENJDK_$1_CPU_OSARCH="amd64" |
20363 | 389 |
fi |
37402 | 390 |
AC_SUBST(OPENJDK_$1_CPU_OSARCH) |
13697 | 391 |
|
37402 | 392 |
OPENJDK_$1_CPU_JLI="$OPENJDK_$1_CPU" |
393 |
if test "x$OPENJDK_$1_CPU" = xx86; then |
|
394 |
OPENJDK_$1_CPU_JLI="i386" |
|
395 |
elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
20363 | 396 |
# On all platforms except macosx, we replace x86_64 with amd64. |
37402 | 397 |
OPENJDK_$1_CPU_JLI="amd64" |
20363 | 398 |
fi |
13697 | 399 |
|
37972 | 400 |
# The new version string in JDK 9 also defined new naming of OS and ARCH for bundles |
401 |
# Macosx is osx and x86_64 is x64 |
|
402 |
if test "x$OPENJDK_$1_OS" = xmacosx; then |
|
403 |
OPENJDK_$1_OS_BUNDLE="osx" |
|
404 |
else |
|
405 |
OPENJDK_$1_OS_BUNDLE="$OPENJDK_TARGET_OS" |
|
406 |
fi |
|
407 |
if test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
408 |
OPENJDK_$1_CPU_BUNDLE="x64" |
|
409 |
else |
|
410 |
OPENJDK_$1_CPU_BUNDLE="$OPENJDK_$1_CPU" |
|
411 |
fi |
|
412 |
OPENJDK_$1_BUNDLE_PLATFORM="${OPENJDK_$1_OS_BUNDLE}-${OPENJDK_$1_CPU_BUNDLE}" |
|
413 |
AC_SUBST(OPENJDK_$1_BUNDLE_PLATFORM) |
|
414 |
||
20363 | 415 |
if test "x$COMPILE_TYPE" = "xcross"; then |
416 |
# FIXME: ... or should this include reduced builds..? |
|
37402 | 417 |
DEFINE_CROSS_COMPILE_ARCH="CROSS_COMPILE_ARCH:=$OPENJDK_$1_CPU_LEGACY" |
20363 | 418 |
else |
419 |
DEFINE_CROSS_COMPILE_ARCH="" |
|
420 |
fi |
|
421 |
AC_SUBST(DEFINE_CROSS_COMPILE_ARCH) |
|
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
14111
diff
changeset
|
422 |
|
37402 | 423 |
# Convert openjdk platform names to hotspot names |
424 |
||
425 |
HOTSPOT_$1_OS=${OPENJDK_$1_OS} |
|
426 |
if test "x$OPENJDK_$1_OS" = xmacosx; then |
|
427 |
HOTSPOT_$1_OS=bsd |
|
428 |
fi |
|
429 |
AC_SUBST(HOTSPOT_$1_OS) |
|
430 |
||
431 |
HOTSPOT_$1_OS_TYPE=${OPENJDK_$1_OS_TYPE} |
|
432 |
if test "x$OPENJDK_$1_OS_TYPE" = xunix; then |
|
433 |
HOTSPOT_$1_OS_TYPE=posix |
|
434 |
fi |
|
435 |
AC_SUBST(HOTSPOT_$1_OS_TYPE) |
|
436 |
||
437 |
HOTSPOT_$1_CPU=${OPENJDK_$1_CPU} |
|
438 |
if test "x$OPENJDK_$1_CPU" = xx86; then |
|
439 |
HOTSPOT_$1_CPU=x86_32 |
|
440 |
elif test "x$OPENJDK_$1_CPU" = xsparcv9; then |
|
441 |
HOTSPOT_$1_CPU=sparc |
|
442 |
elif test "x$OPENJDK_$1_CPU" = xppc64; then |
|
443 |
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
|
444 |
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
|
445 |
HOTSPOT_$1_CPU=ppc_64 |
37402 | 446 |
fi |
447 |
AC_SUBST(HOTSPOT_$1_CPU) |
|
448 |
||
449 |
# This is identical with OPENJDK_*, but define anyway for consistency. |
|
450 |
HOTSPOT_$1_CPU_ARCH=${OPENJDK_$1_CPU_ARCH} |
|
451 |
AC_SUBST(HOTSPOT_$1_CPU_ARCH) |
|
452 |
||
453 |
# Setup HOTSPOT_$1_CPU_DEFINE |
|
454 |
if test "x$OPENJDK_$1_CPU" = xx86; then |
|
455 |
HOTSPOT_$1_CPU_DEFINE=IA32 |
|
456 |
elif test "x$OPENJDK_$1_CPU" = xx86_64; then |
|
457 |
HOTSPOT_$1_CPU_DEFINE=AMD64 |
|
458 |
elif test "x$OPENJDK_$1_CPU" = xsparcv9; then |
|
459 |
HOTSPOT_$1_CPU_DEFINE=SPARC |
|
460 |
elif test "x$OPENJDK_$1_CPU" = xaarch64; then |
|
461 |
HOTSPOT_$1_CPU_DEFINE=AARCH64 |
|
462 |
elif test "x$OPENJDK_$1_CPU" = xppc64; then |
|
463 |
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
|
464 |
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
|
465 |
HOTSPOT_$1_CPU_DEFINE=PPC64 |
37402 | 466 |
|
467 |
# The cpu defines below are for zero, we don't support them directly. |
|
468 |
elif test "x$OPENJDK_$1_CPU" = xsparc; then |
|
469 |
HOTSPOT_$1_CPU_DEFINE=SPARC |
|
470 |
elif test "x$OPENJDK_$1_CPU" = xppc; then |
|
471 |
HOTSPOT_$1_CPU_DEFINE=PPC32 |
|
472 |
elif test "x$OPENJDK_$1_CPU" = xs390; then |
|
473 |
HOTSPOT_$1_CPU_DEFINE=S390 |
|
37658 | 474 |
elif test "x$OPENJDK_$1_CPU" = xs390x; then |
37402 | 475 |
HOTSPOT_$1_CPU_DEFINE=S390 |
40619
7ec316b9555d
8165158: Fix zero builds for non-listed architectures
erikj
parents:
37972
diff
changeset
|
476 |
elif test "x$OPENJDK_$1_CPU" != x; then |
7ec316b9555d
8165158: Fix zero builds for non-listed architectures
erikj
parents:
37972
diff
changeset
|
477 |
HOTSPOT_$1_CPU_DEFINE=$(echo $OPENJDK_$1_CPU | tr a-z A-Z) |
37402 | 478 |
fi |
479 |
AC_SUBST(HOTSPOT_$1_CPU_DEFINE) |
|
480 |
||
48355 | 481 |
# For historical reasons, the OS include directories have odd names. |
482 |
OPENJDK_$1_OS_INCLUDE_SUBDIR="$OPENJDK_TARGET_OS" |
|
483 |
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then |
|
484 |
OPENJDK_$1_OS_INCLUDE_SUBDIR="win32" |
|
485 |
elif test "x$OPENJDK_TARGET_OS" = "xmacosx"; then |
|
486 |
OPENJDK_$1_OS_INCLUDE_SUBDIR="darwin" |
|
487 |
fi |
|
488 |
AC_SUBST(OPENJDK_$1_OS_INCLUDE_SUBDIR) |
|
13697 | 489 |
]) |
490 |
||
44985
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
491 |
AC_DEFUN([PLATFORM_SET_RELEASE_FILE_OS_VALUES], |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
492 |
[ |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
493 |
if test "x$OPENJDK_TARGET_OS" = "xsolaris"; then |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
494 |
RELEASE_FILE_OS_NAME=SunOS |
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" = "xlinux"; then |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
497 |
RELEASE_FILE_OS_NAME=Linux |
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" = "xwindows"; then |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
500 |
RELEASE_FILE_OS_NAME=Windows |
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" = xmacosx; then |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
503 |
RELEASE_FILE_OS_NAME="Darwin" |
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 |
if test "x$OPENJDK_TARGET_OS" = "xaix"; then |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
506 |
RELEASE_FILE_OS_NAME="AIX" |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
507 |
fi |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
508 |
RELEASE_FILE_OS_ARCH=${OPENJDK_TARGET_CPU} |
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 |
AC_SUBST(RELEASE_FILE_OS_NAME) |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
511 |
AC_SUBST(RELEASE_FILE_OS_ARCH) |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
512 |
]) |
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
513 |
|
44729
c426e90f08d2
8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents:
44309
diff
changeset
|
514 |
AC_DEFUN([PLATFORM_SET_MODULE_TARGET_OS_VALUES], |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
515 |
[ |
44729
c426e90f08d2
8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents:
44309
diff
changeset
|
516 |
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
|
517 |
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
|
518 |
else |
c426e90f08d2
8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents:
44309
diff
changeset
|
519 |
OPENJDK_MODULE_TARGET_OS_NAME="$OPENJDK_TARGET_OS" |
20363 | 520 |
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
|
521 |
|
c426e90f08d2
8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents:
44309
diff
changeset
|
522 |
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
|
523 |
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
|
524 |
else |
c426e90f08d2
8175819: OS name and arch in JMOD files should match the values as in the bundle names
mchung
parents:
44309
diff
changeset
|
525 |
OPENJDK_MODULE_TARGET_OS_ARCH="$OPENJDK_TARGET_CPU" |
20363 | 526 |
fi |
12801 | 527 |
|
44985
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
528 |
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
|
529 |
AC_SUBST(OPENJDK_MODULE_TARGET_PLATFORM) |
12801 | 530 |
]) |
13132 | 531 |
|
532 |
#%%% Build and target systems %%% |
|
533 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET], |
|
534 |
[ |
|
20363 | 535 |
# Figure out the build and target systems. # Note that in autoconf terminology, "build" is obvious, but "target" |
536 |
# is confusing; it assumes you are cross-compiling a cross-compiler (!) and "target" is thus the target of the |
|
537 |
# product you're building. The target of this build is called "host". Since this is confusing to most people, we |
|
538 |
# have not adopted that system, but use "target" as the platform we are building for. In some places though we need |
|
539 |
# to use the configure naming style. |
|
540 |
AC_CANONICAL_BUILD |
|
541 |
AC_CANONICAL_HOST |
|
542 |
AC_CANONICAL_TARGET |
|
13132 | 543 |
|
20363 | 544 |
PLATFORM_EXTRACT_TARGET_AND_BUILD |
545 |
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
|
546 |
PLATFORM_SET_MODULE_TARGET_OS_VALUES |
44985
54f298f9766a
8178380: Module system implementation refresh (5/2017)
alanb
parents:
44729
diff
changeset
|
547 |
PLATFORM_SET_RELEASE_FILE_OS_VALUES |
20363 | 548 |
PLATFORM_SETUP_LEGACY_VARS |
13132 | 549 |
]) |
550 |
||
551 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION], |
|
552 |
[ |
|
20363 | 553 |
############################################################################### |
13132 | 554 |
|
20363 | 555 |
# Note that this is the build platform OS version! |
13132 | 556 |
|
20363 | 557 |
OS_VERSION="`uname -r | ${SED} 's!\.! !g' | ${SED} 's!-! !g'`" |
558 |
OS_VERSION_MAJOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 1 -d ' '`" |
|
559 |
OS_VERSION_MINOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 2 -d ' '`" |
|
560 |
OS_VERSION_MICRO="`${ECHO} ${OS_VERSION} | ${CUT} -f 3 -d ' '`" |
|
561 |
AC_SUBST(OS_VERSION_MAJOR) |
|
562 |
AC_SUBST(OS_VERSION_MINOR) |
|
563 |
AC_SUBST(OS_VERSION_MICRO) |
|
13132 | 564 |
]) |
565 |
||
13697 | 566 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_BITS], |
13132 | 567 |
[ |
20363 | 568 |
############################################################################### |
569 |
# |
|
570 |
# Now we check if libjvm.so will use 32 or 64 bit pointers for the C/C++ code. |
|
571 |
# (The JVM can use 32 or 64 bit Java pointers but that decision |
|
572 |
# is made at runtime.) |
|
573 |
# |
|
16984 | 574 |
|
20363 | 575 |
# Make compilation sanity check |
576 |
AC_CHECK_HEADERS([stdio.h], , [ |
|
577 |
AC_MSG_NOTICE([Failed to compile stdio.h. This likely implies missing compile dependencies.]) |
|
578 |
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
|
579 |
HELP_MSG_MISSING_DEPENDENCY([reduced]) |
a24b5324b595
8138627: Better help message in configure for reduced builds (target-bits=32)
ihse
parents:
29165
diff
changeset
|
580 |
AC_MSG_NOTICE([You are doing a reduced build. Check that you have 32-bit libraries installed. $HELP_MSG]) |
20363 | 581 |
elif test "x$COMPILE_TYPE" = xcross; then |
582 |
AC_MSG_NOTICE([You are doing a cross-compilation. Check that you have all target platform libraries installed.]) |
|
583 |
fi |
|
584 |
AC_MSG_ERROR([Cannot continue.]) |
|
585 |
]) |
|
586 |
||
587 |
AC_CHECK_SIZEOF([int *], [1111]) |
|
588 |
||
22467 | 589 |
# AC_CHECK_SIZEOF defines 'ac_cv_sizeof_int_p' to hold the number of bytes used by an 'int*' |
590 |
if test "x$ac_cv_sizeof_int_p" = x; then |
|
13697 | 591 |
# The test failed, lets stick to the assumed value. |
592 |
AC_MSG_WARN([The number of bits in the target could not be determined, using $OPENJDK_TARGET_CPU_BITS.]) |
|
20363 | 593 |
else |
22466 | 594 |
TESTED_TARGET_CPU_BITS=`expr 8 \* $ac_cv_sizeof_int_p` |
13132 | 595 |
|
13697 | 596 |
if test "x$TESTED_TARGET_CPU_BITS" != "x$OPENJDK_TARGET_CPU_BITS"; then |
49120 | 597 |
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)]) |
598 |
if test "x$COMPILE_TYPE" = xreduced; then |
|
599 |
HELP_MSG_MISSING_DEPENDENCY([reduced]) |
|
600 |
AC_MSG_NOTICE([You are doing a reduced build. Check that you have 32-bit libraries installed. $HELP_MSG]) |
|
601 |
elif test "x$COMPILE_TYPE" = xcross; then |
|
602 |
AC_MSG_NOTICE([You are doing a cross-compilation. Check that you have all target platform libraries installed.]) |
|
22467 | 603 |
fi |
49120 | 604 |
AC_MSG_ERROR([Cannot continue.]) |
13132 | 605 |
fi |
20363 | 606 |
fi |
13132 | 607 |
|
20363 | 608 |
AC_MSG_CHECKING([for target address size]) |
609 |
AC_MSG_RESULT([$OPENJDK_TARGET_CPU_BITS bits]) |
|
13132 | 610 |
]) |
611 |
||
612 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS], |
|
613 |
[ |
|
20363 | 614 |
############################################################################### |
615 |
# |
|
616 |
# Is the target little of big endian? |
|
617 |
# |
|
618 |
AC_C_BIGENDIAN([ENDIAN="big"],[ENDIAN="little"],[ENDIAN="unknown"],[ENDIAN="universal_endianness"]) |
|
13132 | 619 |
|
20363 | 620 |
if test "x$ENDIAN" = xuniversal_endianness; then |
13132 | 621 |
AC_MSG_ERROR([Building with both big and little endianness is not supported]) |
20363 | 622 |
fi |
623 |
if test "x$ENDIAN" != "x$OPENJDK_TARGET_CPU_ENDIAN"; then |
|
13697 | 624 |
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 | 625 |
fi |
13132 | 626 |
]) |