diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-04-02 02:00:29 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-04-02 02:02:11 -0700 |
commit | 0e7e963bf1e61e2fb4f5ba7c47e8d080e3b452f4 (patch) | |
tree | 7db45b5915d3838c94712bc28b672fdb2169c262 /dev-java/icedtea/files | |
parent | app-emacs/emacs-common: Remove old (diff) | |
download | gentoo-0e7e963bf1e61e2fb4f5ba7c47e8d080e3b452f4.tar.gz gentoo-0e7e963bf1e61e2fb4f5ba7c47e8d080e3b452f4.tar.bz2 gentoo-0e7e963bf1e61e2fb4f5ba7c47e8d080e3b452f4.zip |
dev-java/icedtea: bump to 3.18.0
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'dev-java/icedtea/files')
-rw-r--r-- | dev-java/icedtea/files/openjdk-8-hotspot-arrayallocator.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-java/icedtea/files/openjdk-8-hotspot-arrayallocator.patch b/dev-java/icedtea/files/openjdk-8-hotspot-arrayallocator.patch new file mode 100644 index 000000000000..ba5283f15771 --- /dev/null +++ b/dev-java/icedtea/files/openjdk-8-hotspot-arrayallocator.patch @@ -0,0 +1,16 @@ +Workarounds build error: +Error: dl failure on line 895 +Error relocating .../libjvm.so: _ZN14ArrayAllocatorImL10MemoryType7EE4freeEv: symbol not found + +Possibly due to g++ 10.x error on not properly instantiating the template. + +--- openjdk/hotspot/src/share/vm/utilities/bitMap.cpp.orig 2020-11-10 14:07:08.372045326 +0200 ++++ openjdk/hotspot/src/share/vm/utilities/bitMap.cpp 2020-11-10 14:08:07.911412813 +0200 +@@ -42,6 +42,7 @@ + # include "os_bsd.inline.hpp" + #endif + ++template class ArrayAllocator<BitMap::bm_word_t, mtInternal>; + + BitMap::BitMap(bm_word_t* map, idx_t size_in_bits) : + _map(map), _size(size_in_bits), _map_allocator(false) |