diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 09:00:08 +0200 |
---|---|---|
committer | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 15:11:36 +0200 |
commit | e5510ba991a5494e562776f135fc07f2999a86a8 (patch) | |
tree | 48c5fb5d665af845c4dfd92861dc99aa88b71347 /recipes-core/openjdk/patches-openjdk-8/2009-jdk-make-use-gcc-instead-of-ld-for-genSocketOptionRe.patch | |
parent | a599da830cdfe8f50534a8b5d4b8b963b34bc045 (diff) | |
download | meta-java-e5510ba991a5494e562776f135fc07f2999a86a8.tar.gz |
openjdk-8: update to latest ga version 265
Patch related changes:
* The hotspot patch 1004 was mainlined in changeset 3a3803a0c789 [1] and
is therfore dropped.
* The jdk patch 2010 was mainlined in changeset c4418d567028 [2] and is
therefore dropped.
* Rename hotspot/aarch64 patches to start with number 1401.
* Rename hotspot/aarch32 patches to start with number 1201.
* Merge aarch32-hotspot-fix-shark-build-pt2.patch and
openjdk8-fix-shark-build-pt2.patch to hotspot patch 1013 as they were
the same.
[1] https://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/rev/3a3803a0c789
[2] https://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/c4418d567028
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/2009-jdk-make-use-gcc-instead-of-ld-for-genSocketOptionRe.patch')
-rw-r--r-- | recipes-core/openjdk/patches-openjdk-8/2009-jdk-make-use-gcc-instead-of-ld-for-genSocketOptionRe.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/2009-jdk-make-use-gcc-instead-of-ld-for-genSocketOptionRe.patch b/recipes-core/openjdk/patches-openjdk-8/2009-jdk-make-use-gcc-instead-of-ld-for-genSocketOptionRe.patch new file mode 100644 index 0000000..ecd836c --- /dev/null +++ b/recipes-core/openjdk/patches-openjdk-8/2009-jdk-make-use-gcc-instead-of-ld-for-genSocketOptionRe.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From de3aa0cf20498ce1dc6056f976a4d9aa6f0ddd00 Mon Sep 17 00:00:00 2001 | ||
2 | From: Richard Leitner <richard.leitner@skidata.com> | ||
3 | Date: Thu, 20 Aug 2020 11:24:40 +0200 | ||
4 | Subject: [PATCH 2009/2009] jdk: make: use gcc instead of ld for | ||
5 | genSocketOptionRegistry | ||
6 | |||
7 | Upstream-Status: Pending | ||
8 | |||
9 | Signed-off-by: Richard Leitner <richard.leitner@skidata.com> | ||
10 | --- | ||
11 | make/gensrc/GensrcMisc.gmk | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/jdk/make/gensrc/GensrcMisc.gmk b/jdk/make/gensrc/GensrcMisc.gmk | ||
15 | index 9db5c9d6f7..84a3c27e7d 100644 | ||
16 | --- a/jdk/make/gensrc/GensrcMisc.gmk | ||
17 | +++ b/jdk/make/gensrc/GensrcMisc.gmk | ||
18 | @@ -76,7 +76,7 @@ $(eval $(call SetupNativeCompilation,BUILD_GENSRC_SOR_EXE, \ | ||
19 | INCLUDE_FILES := $(GENSRC_SOR_SRC_FILE), \ | ||
20 | LANG := C, \ | ||
21 | CC := $(BUILD_CC), \ | ||
22 | - LDEXE := $(BUILD_LD), \ | ||
23 | + LDEXE := $(BUILD_CC), \ | ||
24 | OBJECT_DIR := $(GENSRC_SOR_BIN), \ | ||
25 | OUTPUT_DIR := $(GENSRC_SOR_BIN), \ | ||
26 | PROGRAM := genSocketOptionRegistry)) | ||
27 | -- | ||
28 | 2.26.2 | ||
29 | |||