author | ccheung |
Thu, 24 Oct 2013 17:20:39 -0400 | |
changeset 21084 | 31bdb14868f6 |
parent 20363 | fa7663fc5d50 |
child 21055 | d52217bb8e80 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
2 |
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
13697 | 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 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
45 |
arm*) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
VAR_CPU=arm |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
47 |
VAR_CPU_ARCH=arm |
13132 | 48 |
VAR_CPU_BITS=32 |
49 |
VAR_CPU_ENDIAN=little |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
50 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
powerpc) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
52 |
VAR_CPU=ppc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
53 |
VAR_CPU_ARCH=ppc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
54 |
VAR_CPU_BITS=32 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
55 |
VAR_CPU_ENDIAN=big |
20363 | 56 |
;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
57 |
powerpc64) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
58 |
VAR_CPU=ppc64 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
59 |
VAR_CPU_ARCH=ppc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
60 |
VAR_CPU_BITS=64 |
13132 | 61 |
VAR_CPU_ENDIAN=big |
20363 | 62 |
;; |
19676 | 63 |
s390) |
64 |
VAR_CPU=s390 |
|
65 |
VAR_CPU_ARCH=s390 |
|
66 |
VAR_CPU_BITS=32 |
|
67 |
VAR_CPU_ENDIAN=big |
|
20363 | 68 |
;; |
19676 | 69 |
s390x) |
70 |
VAR_CPU=s390x |
|
71 |
VAR_CPU_ARCH=s390 |
|
72 |
VAR_CPU_BITS=64 |
|
73 |
VAR_CPU_ENDIAN=big |
|
20363 | 74 |
;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
75 |
sparc) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
76 |
VAR_CPU=sparc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
77 |
VAR_CPU_ARCH=sparc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
78 |
VAR_CPU_BITS=32 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
79 |
VAR_CPU_ENDIAN=big |
20363 | 80 |
;; |
13697 | 81 |
sparcv9) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
82 |
VAR_CPU=sparcv9 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
83 |
VAR_CPU_ARCH=sparc |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
84 |
VAR_CPU_BITS=64 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
85 |
VAR_CPU_ENDIAN=big |
20363 | 86 |
;; |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
87 |
*) |
12801 | 88 |
AC_MSG_ERROR([unsupported cpu $1]) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
89 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
90 |
esac |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
91 |
]) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
92 |
|
13697 | 93 |
# Support macro for PLATFORM_EXTRACT_TARGET_AND_BUILD. |
94 |
# Converts autoconf style OS name to OpenJDK style, into |
|
95 |
# VAR_OS and VAR_OS_API. |
|
13132 | 96 |
AC_DEFUN([PLATFORM_EXTRACT_VARS_FROM_OS], |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
97 |
[ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
98 |
case "$1" in |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
99 |
*linux*) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
100 |
VAR_OS=linux |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
101 |
VAR_OS_API=posix |
14111 | 102 |
VAR_OS_ENV=linux |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
103 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
104 |
*solaris*) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
105 |
VAR_OS=solaris |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
106 |
VAR_OS_API=posix |
14111 | 107 |
VAR_OS_ENV=solaris |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
108 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
109 |
*darwin*) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
110 |
VAR_OS=macosx |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
VAR_OS_API=posix |
14111 | 112 |
VAR_OS_ENV=macosx |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
113 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
114 |
*bsd*) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
115 |
VAR_OS=bsd |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
VAR_OS_API=posix |
14111 | 117 |
VAR_OS_ENV=bsd |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
118 |
;; |
14111 | 119 |
*cygwin*) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
120 |
VAR_OS=windows |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
121 |
VAR_OS_API=winapi |
14111 | 122 |
VAR_OS_ENV=windows.cygwin |
123 |
;; |
|
124 |
*mingw*) |
|
125 |
VAR_OS=windows |
|
126 |
VAR_OS_API=winapi |
|
127 |
VAR_OS_ENV=windows.msys |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
128 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
129 |
*) |
13132 | 130 |
AC_MSG_ERROR([unsupported operating system $1]) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
131 |
;; |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
132 |
esac |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
133 |
]) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
134 |
|
13697 | 135 |
# Expects $host_os $host_cpu $build_os and $build_cpu |
136 |
# and $with_target_bits to have been setup! |
|
137 |
# |
|
138 |
# Translate the standard triplet(quadruplet) definition |
|
139 |
# of the target/build system into OPENJDK_TARGET_OS, OPENJDK_TARGET_CPU, |
|
140 |
# OPENJDK_BUILD_OS, etc. |
|
141 |
AC_DEFUN([PLATFORM_EXTRACT_TARGET_AND_BUILD], |
|
142 |
[ |
|
20363 | 143 |
# Copy the autoconf trip/quadruplet verbatim to OPENJDK_TARGET_AUTOCONF_NAME |
144 |
# (from the autoconf "host") and OPENJDK_BUILD_AUTOCONF_NAME |
|
145 |
# Note that we might later on rewrite e.g. OPENJDK_TARGET_CPU due to reduced build, |
|
146 |
# but this will not change the value of OPENJDK_TARGET_AUTOCONF_NAME. |
|
147 |
OPENJDK_TARGET_AUTOCONF_NAME="$host" |
|
148 |
OPENJDK_BUILD_AUTOCONF_NAME="$build" |
|
149 |
AC_SUBST(OPENJDK_TARGET_AUTOCONF_NAME) |
|
150 |
AC_SUBST(OPENJDK_BUILD_AUTOCONF_NAME) |
|
13697 | 151 |
|
20363 | 152 |
# Convert the autoconf OS/CPU value to our own data, into the VAR_OS/CPU variables. |
153 |
PLATFORM_EXTRACT_VARS_FROM_OS($build_os) |
|
154 |
PLATFORM_EXTRACT_VARS_FROM_CPU($build_cpu) |
|
155 |
# ..and setup our own variables. (Do this explicitely to facilitate searching) |
|
156 |
OPENJDK_BUILD_OS="$VAR_OS" |
|
157 |
OPENJDK_BUILD_OS_API="$VAR_OS_API" |
|
158 |
OPENJDK_BUILD_OS_ENV="$VAR_OS_ENV" |
|
159 |
OPENJDK_BUILD_CPU="$VAR_CPU" |
|
160 |
OPENJDK_BUILD_CPU_ARCH="$VAR_CPU_ARCH" |
|
161 |
OPENJDK_BUILD_CPU_BITS="$VAR_CPU_BITS" |
|
162 |
OPENJDK_BUILD_CPU_ENDIAN="$VAR_CPU_ENDIAN" |
|
163 |
AC_SUBST(OPENJDK_BUILD_OS) |
|
164 |
AC_SUBST(OPENJDK_BUILD_OS_API) |
|
165 |
AC_SUBST(OPENJDK_BUILD_CPU) |
|
166 |
AC_SUBST(OPENJDK_BUILD_CPU_ARCH) |
|
167 |
AC_SUBST(OPENJDK_BUILD_CPU_BITS) |
|
168 |
AC_SUBST(OPENJDK_BUILD_CPU_ENDIAN) |
|
14111 | 169 |
|
20363 | 170 |
AC_MSG_CHECKING([openjdk-build os-cpu]) |
171 |
AC_MSG_RESULT([$OPENJDK_BUILD_OS-$OPENJDK_BUILD_CPU]) |
|
14111 | 172 |
|
20363 | 173 |
# Convert the autoconf OS/CPU value to our own data, into the VAR_OS/CPU variables. |
174 |
PLATFORM_EXTRACT_VARS_FROM_OS($host_os) |
|
175 |
PLATFORM_EXTRACT_VARS_FROM_CPU($host_cpu) |
|
176 |
# ... and setup our own variables. (Do this explicitely to facilitate searching) |
|
177 |
OPENJDK_TARGET_OS="$VAR_OS" |
|
178 |
OPENJDK_TARGET_OS_API="$VAR_OS_API" |
|
179 |
OPENJDK_TARGET_OS_ENV="$VAR_OS_ENV" |
|
180 |
OPENJDK_TARGET_CPU="$VAR_CPU" |
|
181 |
OPENJDK_TARGET_CPU_ARCH="$VAR_CPU_ARCH" |
|
182 |
OPENJDK_TARGET_CPU_BITS="$VAR_CPU_BITS" |
|
183 |
OPENJDK_TARGET_CPU_ENDIAN="$VAR_CPU_ENDIAN" |
|
184 |
AC_SUBST(OPENJDK_TARGET_OS) |
|
185 |
AC_SUBST(OPENJDK_TARGET_OS_API) |
|
186 |
AC_SUBST(OPENJDK_TARGET_CPU) |
|
187 |
AC_SUBST(OPENJDK_TARGET_CPU_ARCH) |
|
188 |
AC_SUBST(OPENJDK_TARGET_CPU_BITS) |
|
189 |
AC_SUBST(OPENJDK_TARGET_CPU_ENDIAN) |
|
13697 | 190 |
|
20363 | 191 |
AC_MSG_CHECKING([openjdk-target os-cpu]) |
192 |
AC_MSG_RESULT([$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU]) |
|
13697 | 193 |
]) |
194 |
||
195 |
# Check if a reduced build (32-bit on 64-bit platforms) is requested, and modify behaviour |
|
196 |
# accordingly. Must be done after setting up build and target system, but before |
|
197 |
# doing anything else with these values. |
|
198 |
AC_DEFUN([PLATFORM_SETUP_TARGET_CPU_BITS], |
|
199 |
[ |
|
200 |
AC_ARG_WITH(target-bits, [AS_HELP_STRING([--with-target-bits], |
|
20363 | 201 |
[build 32-bit or 64-bit binaries (for platforms that support it), e.g. --with-target-bits=32 @<:@guessed@:>@])]) |
13697 | 202 |
|
203 |
# We have three types of compiles: |
|
204 |
# native == normal compilation, target system == build system |
|
205 |
# cross == traditional cross compilation, target system != build system; special toolchain needed |
|
206 |
# reduced == using native compilers, but with special flags (e.g. -m32) to produce 32-bit builds on 64-bit machines |
|
207 |
# |
|
208 |
if test "x$OPENJDK_BUILD_AUTOCONF_NAME" != "x$OPENJDK_TARGET_AUTOCONF_NAME"; then |
|
209 |
# We're doing a proper cross-compilation |
|
210 |
COMPILE_TYPE="cross" |
|
211 |
else |
|
212 |
COMPILE_TYPE="native" |
|
213 |
fi |
|
214 |
||
215 |
if test "x$with_target_bits" != x; then |
|
216 |
if test "x$COMPILE_TYPE" = "xcross"; then |
|
217 |
AC_MSG_ERROR([It is not possible to combine --with-target-bits=X and proper cross-compilation. Choose either.]) |
|
218 |
fi |
|
219 |
||
220 |
if test "x$with_target_bits" = x32 && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
|
221 |
# A reduced build is requested |
|
222 |
COMPILE_TYPE="reduced" |
|
223 |
OPENJDK_TARGET_CPU_BITS=32 |
|
224 |
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86"; then |
|
225 |
OPENJDK_TARGET_CPU=x86 |
|
226 |
elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then |
|
227 |
OPENJDK_TARGET_CPU=sparc |
|
228 |
else |
|
229 |
AC_MSG_ERROR([Reduced build (--with-target-bits=32) is only supported on x86_64 and sparcv9]) |
|
20363 | 230 |
fi |
13697 | 231 |
elif test "x$with_target_bits" = x64 && test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
232 |
AC_MSG_ERROR([It is not possible to use --with-target-bits=64 on a 32 bit system. Use proper cross-compilation instead.]) |
|
233 |
elif test "x$with_target_bits" = "x$OPENJDK_TARGET_CPU_BITS"; then |
|
234 |
AC_MSG_NOTICE([--with-target-bits are set to build platform address size; argument has no meaning]) |
|
235 |
else |
|
236 |
AC_MSG_ERROR([--with-target-bits can only be 32 or 64, you specified $with_target_bits!]) |
|
237 |
fi |
|
238 |
fi |
|
239 |
AC_SUBST(COMPILE_TYPE) |
|
240 |
||
20363 | 241 |
AC_MSG_CHECKING([compilation type]) |
242 |
AC_MSG_RESULT([$COMPILE_TYPE]) |
|
13697 | 243 |
]) |
244 |
||
20363 | 245 |
# Setup the legacy variables, for controlling the old makefiles. |
246 |
# |
|
13697 | 247 |
AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS], |
248 |
[ |
|
20363 | 249 |
# Also store the legacy naming of the cpu. |
250 |
# Ie i586 and amd64 instead of x86 and x86_64 |
|
251 |
OPENJDK_TARGET_CPU_LEGACY="$OPENJDK_TARGET_CPU" |
|
252 |
if test "x$OPENJDK_TARGET_CPU" = xx86; then |
|
253 |
OPENJDK_TARGET_CPU_LEGACY="i586" |
|
254 |
elif test "x$OPENJDK_TARGET_OS" != xmacosx && test "x$OPENJDK_TARGET_CPU" = xx86_64; then |
|
255 |
# On all platforms except MacOSX replace x86_64 with amd64. |
|
256 |
OPENJDK_TARGET_CPU_LEGACY="amd64" |
|
257 |
fi |
|
258 |
AC_SUBST(OPENJDK_TARGET_CPU_LEGACY) |
|
13697 | 259 |
|
20363 | 260 |
# And the second legacy naming of the cpu. |
261 |
# Ie i386 and amd64 instead of x86 and x86_64. |
|
262 |
OPENJDK_TARGET_CPU_LEGACY_LIB="$OPENJDK_TARGET_CPU" |
|
263 |
if test "x$OPENJDK_TARGET_CPU" = xx86; then |
|
264 |
OPENJDK_TARGET_CPU_LEGACY_LIB="i386" |
|
265 |
elif test "x$OPENJDK_TARGET_CPU" = xx86_64; then |
|
266 |
OPENJDK_TARGET_CPU_LEGACY_LIB="amd64" |
|
267 |
fi |
|
268 |
AC_SUBST(OPENJDK_TARGET_CPU_LEGACY_LIB) |
|
13697 | 269 |
|
20363 | 270 |
# This is the name of the cpu (but using i386 and amd64 instead of |
271 |
# x86 and x86_64, respectively), preceeded by a /, to be used when |
|
272 |
# locating libraries. On macosx, it's empty, though. |
|
273 |
OPENJDK_TARGET_CPU_LIBDIR="/$OPENJDK_TARGET_CPU_LEGACY_LIB" |
|
274 |
if test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
275 |
OPENJDK_TARGET_CPU_LIBDIR="" |
|
276 |
fi |
|
277 |
AC_SUBST(OPENJDK_TARGET_CPU_LIBDIR) |
|
13697 | 278 |
|
20363 | 279 |
# OPENJDK_TARGET_CPU_ISADIR is normally empty. On 64-bit Solaris systems, it is set to |
280 |
# /amd64 or /sparcv9. This string is appended to some library paths, like this: |
|
281 |
# /usr/lib${OPENJDK_TARGET_CPU_ISADIR}/libexample.so |
|
282 |
OPENJDK_TARGET_CPU_ISADIR="" |
|
283 |
if test "x$OPENJDK_TARGET_OS" = xsolaris; then |
|
284 |
if test "x$OPENJDK_TARGET_CPU" = xx86_64; then |
|
285 |
OPENJDK_TARGET_CPU_ISADIR="/amd64" |
|
286 |
elif test "x$OPENJDK_TARGET_CPU" = xsparcv9; then |
|
287 |
OPENJDK_TARGET_CPU_ISADIR="/sparcv9" |
|
13697 | 288 |
fi |
20363 | 289 |
fi |
290 |
AC_SUBST(OPENJDK_TARGET_CPU_ISADIR) |
|
13697 | 291 |
|
20363 | 292 |
# Setup OPENJDK_TARGET_CPU_OSARCH, which is used to set the os.arch Java system property |
293 |
OPENJDK_TARGET_CPU_OSARCH="$OPENJDK_TARGET_CPU" |
|
294 |
if test "x$OPENJDK_TARGET_OS" = xlinux && test "x$OPENJDK_TARGET_CPU" = xx86; then |
|
295 |
# On linux only, we replace x86 with i386. |
|
296 |
OPENJDK_TARGET_CPU_OSARCH="i386" |
|
297 |
elif test "x$OPENJDK_TARGET_OS" != xmacosx && test "x$OPENJDK_TARGET_CPU" = xx86_64; then |
|
298 |
# On all platforms except macosx, we replace x86_64 with amd64. |
|
299 |
OPENJDK_TARGET_CPU_OSARCH="amd64" |
|
300 |
fi |
|
301 |
AC_SUBST(OPENJDK_TARGET_CPU_OSARCH) |
|
13697 | 302 |
|
20363 | 303 |
OPENJDK_TARGET_CPU_JLI="$OPENJDK_TARGET_CPU" |
304 |
if test "x$OPENJDK_TARGET_CPU" = xx86; then |
|
305 |
OPENJDK_TARGET_CPU_JLI="i386" |
|
306 |
elif test "x$OPENJDK_TARGET_OS" != xmacosx && test "x$OPENJDK_TARGET_CPU" = xx86_64; then |
|
307 |
# On all platforms except macosx, we replace x86_64 with amd64. |
|
308 |
OPENJDK_TARGET_CPU_JLI="amd64" |
|
309 |
fi |
|
310 |
# Now setup the -D flags for building libjli. |
|
311 |
OPENJDK_TARGET_CPU_JLI_CFLAGS="-DLIBARCHNAME='\"$OPENJDK_TARGET_CPU_JLI\"'" |
|
312 |
if test "x$OPENJDK_TARGET_OS" = xsolaris; then |
|
313 |
if test "x$OPENJDK_TARGET_CPU_ARCH" = xsparc; then |
|
314 |
OPENJDK_TARGET_CPU_JLI_CFLAGS="$OPENJDK_TARGET_CPU_JLI_CFLAGS -DLIBARCH32NAME='\"sparc\"' -DLIBARCH64NAME='\"sparcv9\"'" |
|
315 |
elif test "x$OPENJDK_TARGET_CPU_ARCH" = xx86; then |
|
316 |
OPENJDK_TARGET_CPU_JLI_CFLAGS="$OPENJDK_TARGET_CPU_JLI_CFLAGS -DLIBARCH32NAME='\"i386\"' -DLIBARCH64NAME='\"amd64\"'" |
|
13697 | 317 |
fi |
20363 | 318 |
fi |
319 |
AC_SUBST(OPENJDK_TARGET_CPU_JLI_CFLAGS) |
|
13697 | 320 |
|
20363 | 321 |
# Setup OPENJDK_TARGET_OS_API_DIR, used in source paths. |
322 |
if test "x$OPENJDK_TARGET_OS_API" = xposix; then |
|
323 |
OPENJDK_TARGET_OS_API_DIR="solaris" |
|
324 |
fi |
|
325 |
if test "x$OPENJDK_TARGET_OS_API" = xwinapi; then |
|
326 |
OPENJDK_TARGET_OS_API_DIR="windows" |
|
327 |
fi |
|
328 |
AC_SUBST(OPENJDK_TARGET_OS_API_DIR) |
|
13697 | 329 |
|
20363 | 330 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
331 |
A_LP64="LP64:=" |
|
332 |
# -D_LP64=1 is only set on linux and mac. Setting on windows causes diff in |
|
333 |
# unpack200.exe |
|
334 |
if test "x$OPENJDK_TARGET_OS" = xlinux || test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
335 |
ADD_LP64="-D_LP64=1" |
|
13697 | 336 |
fi |
20363 | 337 |
fi |
338 |
AC_SUBST(LP64,$A_LP64) |
|
13697 | 339 |
|
20363 | 340 |
if test "x$COMPILE_TYPE" = "xcross"; then |
341 |
# FIXME: ... or should this include reduced builds..? |
|
342 |
DEFINE_CROSS_COMPILE_ARCH="CROSS_COMPILE_ARCH:=$OPENJDK_TARGET_CPU_LEGACY" |
|
343 |
else |
|
344 |
DEFINE_CROSS_COMPILE_ARCH="" |
|
345 |
fi |
|
346 |
AC_SUBST(DEFINE_CROSS_COMPILE_ARCH) |
|
16581
b2cddec593f4
8011388: Support building zero and zeroshark with the new build
omajid
parents:
14111
diff
changeset
|
347 |
|
20363 | 348 |
# ZERO_ARCHDEF is used to enable architecture-specific code |
349 |
case "${OPENJDK_TARGET_CPU}" in |
|
350 |
ppc*) ZERO_ARCHDEF=PPC ;; |
|
351 |
s390*) ZERO_ARCHDEF=S390 ;; |
|
352 |
sparc*) ZERO_ARCHDEF=SPARC ;; |
|
353 |
x86_64*) ZERO_ARCHDEF=AMD64 ;; |
|
354 |
x86) ZERO_ARCHDEF=IA32 ;; |
|
355 |
*) ZERO_ARCHDEF=$(echo "${OPENJDK_TARGET_CPU_LEGACY_LIB}" | tr a-z A-Z) |
|
356 |
esac |
|
357 |
AC_SUBST(ZERO_ARCHDEF) |
|
13697 | 358 |
]) |
359 |
||
13132 | 360 |
AC_DEFUN([PLATFORM_SET_RELEASE_FILE_OS_VALUES], |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
361 |
[ |
20363 | 362 |
if test "x$OPENJDK_TARGET_OS" = "xsolaris"; then |
363 |
REQUIRED_OS_NAME=SunOS |
|
364 |
REQUIRED_OS_VERSION=5.10 |
|
365 |
fi |
|
366 |
if test "x$OPENJDK_TARGET_OS" = "xlinux"; then |
|
367 |
REQUIRED_OS_NAME=Linux |
|
368 |
REQUIRED_OS_VERSION=2.6 |
|
369 |
fi |
|
370 |
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then |
|
371 |
REQUIRED_OS_NAME=Windows |
|
372 |
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64"; then |
|
373 |
REQUIRED_OS_VERSION=5.2 |
|
374 |
else |
|
375 |
REQUIRED_OS_VERSION=5.1 |
|
12801 | 376 |
fi |
20363 | 377 |
fi |
378 |
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then |
|
379 |
REQUIRED_OS_NAME=Darwin |
|
380 |
REQUIRED_OS_VERSION=11.2 |
|
381 |
fi |
|
12801 | 382 |
|
20363 | 383 |
AC_SUBST(REQUIRED_OS_NAME) |
384 |
AC_SUBST(REQUIRED_OS_VERSION) |
|
12801 | 385 |
]) |
13132 | 386 |
|
387 |
#%%% Build and target systems %%% |
|
388 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_AND_TARGET], |
|
389 |
[ |
|
20363 | 390 |
# Figure out the build and target systems. # Note that in autoconf terminology, "build" is obvious, but "target" |
391 |
# is confusing; it assumes you are cross-compiling a cross-compiler (!) and "target" is thus the target of the |
|
392 |
# product you're building. The target of this build is called "host". Since this is confusing to most people, we |
|
393 |
# have not adopted that system, but use "target" as the platform we are building for. In some places though we need |
|
394 |
# to use the configure naming style. |
|
395 |
AC_CANONICAL_BUILD |
|
396 |
AC_CANONICAL_HOST |
|
397 |
AC_CANONICAL_TARGET |
|
13132 | 398 |
|
20363 | 399 |
PLATFORM_EXTRACT_TARGET_AND_BUILD |
400 |
PLATFORM_SETUP_TARGET_CPU_BITS |
|
401 |
PLATFORM_SET_RELEASE_FILE_OS_VALUES |
|
402 |
PLATFORM_SETUP_LEGACY_VARS |
|
13132 | 403 |
]) |
404 |
||
405 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_BUILD_OS_VERSION], |
|
406 |
[ |
|
20363 | 407 |
############################################################################### |
13132 | 408 |
|
20363 | 409 |
# Note that this is the build platform OS version! |
13132 | 410 |
|
20363 | 411 |
OS_VERSION="`uname -r | ${SED} 's!\.! !g' | ${SED} 's!-! !g'`" |
412 |
OS_VERSION_MAJOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 1 -d ' '`" |
|
413 |
OS_VERSION_MINOR="`${ECHO} ${OS_VERSION} | ${CUT} -f 2 -d ' '`" |
|
414 |
OS_VERSION_MICRO="`${ECHO} ${OS_VERSION} | ${CUT} -f 3 -d ' '`" |
|
415 |
AC_SUBST(OS_VERSION_MAJOR) |
|
416 |
AC_SUBST(OS_VERSION_MINOR) |
|
417 |
AC_SUBST(OS_VERSION_MICRO) |
|
13132 | 418 |
]) |
419 |
||
13697 | 420 |
# Support macro for PLATFORM_SETUP_OPENJDK_TARGET_BITS. |
421 |
# Add -mX to various FLAGS variables. |
|
422 |
AC_DEFUN([PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS], |
|
423 |
[ |
|
19760
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
424 |
# When we add flags to the "official" CFLAGS etc, we need to |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
425 |
# keep track of these additions in ADDED_CFLAGS etc. These |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
426 |
# will later be checked to make sure only controlled additions |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
427 |
# have been made to CFLAGS etc. |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
428 |
ADDED_CFLAGS=" -m${OPENJDK_TARGET_CPU_BITS}" |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
429 |
ADDED_CXXFLAGS=" -m${OPENJDK_TARGET_CPU_BITS}" |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
430 |
ADDED_LDFLAGS=" -m${OPENJDK_TARGET_CPU_BITS}" |
13697 | 431 |
|
19760
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
432 |
CFLAGS="${CFLAGS}${ADDED_CFLAGS}" |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
433 |
CXXFLAGS="${CXXFLAGS}${ADDED_CXXFLAGS}" |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
434 |
LDFLAGS="${LDFLAGS}${ADDED_LDFLAGS}" |
13697 | 435 |
|
19760
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
436 |
CFLAGS_JDK="${CFLAGS_JDK}${ADDED_CFLAGS}" |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
437 |
CXXFLAGS_JDK="${CXXFLAGS_JDK}${ADDED_CXXFLAGS}" |
7cd5ce917641
8024665: Move open changes for JDK-8020411 to closed source
ihse
parents:
19676
diff
changeset
|
438 |
LDFLAGS_JDK="${LDFLAGS_JDK}${ADDED_LDFLAGS}" |
13697 | 439 |
]) |
440 |
||
441 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_BITS], |
|
13132 | 442 |
[ |
20363 | 443 |
############################################################################### |
444 |
# |
|
445 |
# Now we check if libjvm.so will use 32 or 64 bit pointers for the C/C++ code. |
|
446 |
# (The JVM can use 32 or 64 bit Java pointers but that decision |
|
447 |
# is made at runtime.) |
|
448 |
# |
|
16984 | 449 |
|
20363 | 450 |
if test "x$OPENJDK_TARGET_OS" = xsolaris; then |
451 |
# Always specify -m flags on Solaris |
|
13697 | 452 |
PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS |
20363 | 453 |
elif test "x$COMPILE_TYPE" = xreduced; then |
454 |
if test "x$OPENJDK_TARGET_OS" != xwindows; then |
|
455 |
# Specify -m if running reduced on other Posix platforms |
|
456 |
PLATFORM_SET_COMPILER_TARGET_BITS_FLAGS |
|
457 |
fi |
|
13697 | 458 |
fi |
13132 | 459 |
|
20363 | 460 |
# Make compilation sanity check |
461 |
AC_CHECK_HEADERS([stdio.h], , [ |
|
462 |
AC_MSG_NOTICE([Failed to compile stdio.h. This likely implies missing compile dependencies.]) |
|
463 |
if test "x$COMPILE_TYPE" = xreduced; then |
|
464 |
AC_MSG_NOTICE([You are doing a reduced build. Check that you have 32-bit libraries installed.]) |
|
465 |
elif test "x$COMPILE_TYPE" = xcross; then |
|
466 |
AC_MSG_NOTICE([You are doing a cross-compilation. Check that you have all target platform libraries installed.]) |
|
467 |
fi |
|
468 |
AC_MSG_ERROR([Cannot continue.]) |
|
469 |
]) |
|
470 |
||
471 |
AC_CHECK_SIZEOF([int *], [1111]) |
|
472 |
||
473 |
if test "x$SIZEOF_INT_P" != "x$ac_cv_sizeof_int_p"; then |
|
474 |
# Workaround autoconf bug, see http://lists.gnu.org/archive/html/autoconf/2010-07/msg00004.html |
|
475 |
SIZEOF_INT_P="$ac_cv_sizeof_int_p" |
|
13697 | 476 |
fi |
477 |
||
20363 | 478 |
if test "x$SIZEOF_INT_P" = x; then |
13697 | 479 |
# The test failed, lets stick to the assumed value. |
480 |
AC_MSG_WARN([The number of bits in the target could not be determined, using $OPENJDK_TARGET_CPU_BITS.]) |
|
20363 | 481 |
else |
13697 | 482 |
TESTED_TARGET_CPU_BITS=`expr 8 \* $SIZEOF_INT_P` |
13132 | 483 |
|
13697 | 484 |
if test "x$TESTED_TARGET_CPU_BITS" != "x$OPENJDK_TARGET_CPU_BITS"; then |
20363 | 485 |
AC_MSG_ERROR([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)]) |
13132 | 486 |
fi |
20363 | 487 |
fi |
13132 | 488 |
|
20363 | 489 |
AC_MSG_CHECKING([for target address size]) |
490 |
AC_MSG_RESULT([$OPENJDK_TARGET_CPU_BITS bits]) |
|
13132 | 491 |
]) |
492 |
||
493 |
AC_DEFUN_ONCE([PLATFORM_SETUP_OPENJDK_TARGET_ENDIANNESS], |
|
494 |
[ |
|
20363 | 495 |
############################################################################### |
496 |
# |
|
497 |
# Is the target little of big endian? |
|
498 |
# |
|
499 |
AC_C_BIGENDIAN([ENDIAN="big"],[ENDIAN="little"],[ENDIAN="unknown"],[ENDIAN="universal_endianness"]) |
|
13132 | 500 |
|
20363 | 501 |
if test "x$ENDIAN" = xuniversal_endianness; then |
13132 | 502 |
AC_MSG_ERROR([Building with both big and little endianness is not supported]) |
20363 | 503 |
fi |
504 |
if test "x$ENDIAN" != "x$OPENJDK_TARGET_CPU_ENDIAN"; then |
|
13697 | 505 |
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 | 506 |
fi |
13132 | 507 |
]) |