1 #
2 # Copyright (c) 2011, 2021, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # This code is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. Oracle designates this
8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
10 #
11 # This code is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 # version 2 for more details (a copy is included in the LICENSE file that
15 # accompanied this code).
16 #
17 # You should have received a copy of the GNU General Public License version
18 # 2 along with this work; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any
129 # But once our supported minimum build and runtime platform
130 # has glibc 2.17, this can be removed as the functions are
131 # in libc.
132 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -lrt"
133 fi
134
135 # Atomic library
136 # 32-bit platforms needs fallback library for 8-byte atomic ops on Zero
137 if HOTSPOT_CHECK_JVM_VARIANT(zero); then
138 if test "x$OPENJDK_TARGET_OS" = xlinux &&
139 (test "x$OPENJDK_TARGET_CPU" = xarm ||
140 test "x$OPENJDK_TARGET_CPU" = xm68k ||
141 test "x$OPENJDK_TARGET_CPU" = xmips ||
142 test "x$OPENJDK_TARGET_CPU" = xmipsel ||
143 test "x$OPENJDK_TARGET_CPU" = xppc ||
144 test "x$OPENJDK_TARGET_CPU" = xsh); then
145 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -latomic"
146 fi
147 fi
148
149 # perfstat lib
150 if test "x$OPENJDK_TARGET_OS" = xaix; then
151 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -lperfstat"
152 fi
153
154 if test "x$OPENJDK_TARGET_OS" = xwindows; then
155 BASIC_JVM_LIBS="$BASIC_JVM_LIBS kernel32.lib user32.lib gdi32.lib winspool.lib \
156 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib \
157 wsock32.lib winmm.lib version.lib psapi.lib"
158 fi
159
160 JDKLIB_LIBS="$BASIC_JDKLIB_LIBS"
161 JDKEXE_LIBS=""
162 JVM_LIBS="$BASIC_JVM_LIBS"
163 OPENJDK_BUILD_JDKLIB_LIBS="$BASIC_JDKLIB_LIBS"
164 OPENJDK_BUILD_JVM_LIBS="$BASIC_JVM_LIBS"
165
166 AC_SUBST(JDKLIB_LIBS)
167 AC_SUBST(JDKEXE_LIBS)
168 AC_SUBST(JVM_LIBS)
|
1 #
2 # Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # This code is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. Oracle designates this
8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
10 #
11 # This code is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 # version 2 for more details (a copy is included in the LICENSE file that
15 # accompanied this code).
16 #
17 # You should have received a copy of the GNU General Public License version
18 # 2 along with this work; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any
129 # But once our supported minimum build and runtime platform
130 # has glibc 2.17, this can be removed as the functions are
131 # in libc.
132 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -lrt"
133 fi
134
135 # Atomic library
136 # 32-bit platforms needs fallback library for 8-byte atomic ops on Zero
137 if HOTSPOT_CHECK_JVM_VARIANT(zero); then
138 if test "x$OPENJDK_TARGET_OS" = xlinux &&
139 (test "x$OPENJDK_TARGET_CPU" = xarm ||
140 test "x$OPENJDK_TARGET_CPU" = xm68k ||
141 test "x$OPENJDK_TARGET_CPU" = xmips ||
142 test "x$OPENJDK_TARGET_CPU" = xmipsel ||
143 test "x$OPENJDK_TARGET_CPU" = xppc ||
144 test "x$OPENJDK_TARGET_CPU" = xsh); then
145 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -latomic"
146 fi
147 fi
148
149 # Because RISC-V only has word-sized atomics, it requries libatomic where
150 # other common architectures do not. So link libatomic by default.
151 if test "x$OPENJDK_TARGET_OS" = xlinux && test "x$OPENJDK_TARGET_CPU" = xriscv64; then
152 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -latomic"
153 fi
154
155 # perfstat lib
156 if test "x$OPENJDK_TARGET_OS" = xaix; then
157 BASIC_JVM_LIBS="$BASIC_JVM_LIBS -lperfstat"
158 fi
159
160 if test "x$OPENJDK_TARGET_OS" = xwindows; then
161 BASIC_JVM_LIBS="$BASIC_JVM_LIBS kernel32.lib user32.lib gdi32.lib winspool.lib \
162 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib \
163 wsock32.lib winmm.lib version.lib psapi.lib"
164 fi
165
166 JDKLIB_LIBS="$BASIC_JDKLIB_LIBS"
167 JDKEXE_LIBS=""
168 JVM_LIBS="$BASIC_JVM_LIBS"
169 OPENJDK_BUILD_JDKLIB_LIBS="$BASIC_JDKLIB_LIBS"
170 OPENJDK_BUILD_JVM_LIBS="$BASIC_JVM_LIBS"
171
172 AC_SUBST(JDKLIB_LIBS)
173 AC_SUBST(JDKEXE_LIBS)
174 AC_SUBST(JVM_LIBS)
|