[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug gold/13442] gold screws up exception handling with --incremental fl
From: |
espen at grindhaug dot org |
Subject: |
[Bug gold/13442] gold screws up exception handling with --incremental flag |
Date: |
Fri, 14 Nov 2014 08:13:28 +0000 |
https://sourceware.org/bugzilla/show_bug.cgi?id=13442
--- Comment #6 from Espen Grindhaug <espen at grindhaug dot org> ---
After some further digging into libgcc and glibc (i'm no expert here!) it looks
like the system expects to find the eh_frame_hdr section. As far as i can tell
the problem then lies here:
layout.cc:1522
void
Layout::add_eh_frame_for_plt(Output_data* plt, const unsigned char* cie_data,
size_t cie_length, const unsigned char* fde_data,
size_t fde_length)
{
if (parameters->incremental())
{
// FIXME: Maybe this could work some day....
return;
}
--
You are receiving this mail because:
You are on the CC list for the bug.