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