summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/patches-openjdk-8/musl-0001-hotspot-stop-using-obsolete-isnanf.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/musl-0001-hotspot-stop-using-obsolete-isnanf.patch')
-rw-r--r--recipes-core/openjdk/patches-openjdk-8/musl-0001-hotspot-stop-using-obsolete-isnanf.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/musl-0001-hotspot-stop-using-obsolete-isnanf.patch b/recipes-core/openjdk/patches-openjdk-8/musl-0001-hotspot-stop-using-obsolete-isnanf.patch
new file mode 100644
index 0000000..e165170
--- /dev/null
+++ b/recipes-core/openjdk/patches-openjdk-8/musl-0001-hotspot-stop-using-obsolete-isnanf.patch
@@ -0,0 +1,42 @@
1From 1624e2dd3739fe208efa13b31abf4bc53ae2e5c1 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <andre.draszik at jci.com <https://lists.yoctoproject.org/listinfo/yocto>>
3Date: Tue, 27 Feb 2018 11:24:44 +0000
4Subject: [PATCH 1/9] hotspot: stop using obsolete isnanf()
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Compiling against musl-libc gives the following error:
10| hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp: In function 'int g_isnan(float)':
11| hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp:238:39: error: 'isnanf' was not declared in this scope
12| inline int g_isnan(float f) { return isnanf(f); }
13| ^~~~~~
14
15isnanf() is obsolete, and musl doesn't implement it. isnan()
16is the right thing to use for all types (float and double),
17replacing isnanf(), even on glibc.
18
19Do so.
20
21Upstream-Status: Pending
22Signed-off-by: André Draszik <andre.draszik at jci.com <https://lists.yoctoproject.org/listinfo/yocto>>
23---
24 hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp | 2 +-
25 1 file changed, 1 insertion(+), 1 deletion(-)
26
27diff --git a/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp b/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
28index efa0b4e1..6df2302e 100644
29--- a/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
30+++ b/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
31@@ -235,7 +235,7 @@ inline int g_isnan(double f) { return isnand(f); }
32 #elif defined(__APPLE__)
33 inline int g_isnan(double f) { return isnan(f); }
34 #elif defined(LINUX) || defined(_ALLBSD_SOURCE)
35-inline int g_isnan(float f) { return isnanf(f); }
36+inline int g_isnan(float f) { return isnan(f); }
37 inline int g_isnan(double f) { return isnan(f); }
38 #else
39 #error "missing platform-specific definition here"
40--
412.16.2
42