As we discussed in the last meeting, we reset the ports tree and began from scratch, even though this change involves porting all the packages. Starting small and growing gradually, this approach will reduce build times and consequently lower energy consumption in a world affected by climate change. We will add new ports as users needs arise; ok h3artbl33d@
This commit is contained in:
parent
83a0aaf92c
commit
9a3af55370
59377 changed files with 98673 additions and 4712155 deletions
23
devel/llvm/18/patches/patch-libunwind_src_EHHeaderParser_hpp
Normal file
23
devel/llvm/18/patches/patch-libunwind_src_EHHeaderParser_hpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
Index: libunwind/src/EHHeaderParser.hpp
|
||||
--- libunwind/src/EHHeaderParser.hpp.orig
|
||||
+++ libunwind/src/EHHeaderParser.hpp
|
||||
@@ -158,6 +158,10 @@ bool EHHeaderParser<A>::findFDE(A &addressSpace, pint_
|
||||
|
||||
template <typename A>
|
||||
size_t EHHeaderParser<A>::getTableEntrySize(uint8_t tableEnc) {
|
||||
+ if (tableEnc == DW_EH_PE_omit) {
|
||||
+ return 0;
|
||||
+ }
|
||||
+
|
||||
switch (tableEnc & 0x0f) {
|
||||
case DW_EH_PE_sdata2:
|
||||
case DW_EH_PE_udata2:
|
||||
@@ -171,8 +175,6 @@ size_t EHHeaderParser<A>::getTableEntrySize(uint8_t ta
|
||||
case DW_EH_PE_sleb128:
|
||||
case DW_EH_PE_uleb128:
|
||||
_LIBUNWIND_ABORT("Can't binary search on variable length encoded data.");
|
||||
- case DW_EH_PE_omit:
|
||||
- return 0;
|
||||
default:
|
||||
_LIBUNWIND_ABORT("Unknown DWARF encoding for search table.");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue