mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f50d83413e
Some files that should have their copyrights checked are still placed on the copyright ignore list. - These entries have been tidied up - Copyrights of those files have been updated.
22 lines
422 B
Plaintext
22 lines
422 B
Plaintext
/*
|
|
* SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
SECTIONS
|
|
{
|
|
.eh_frame_hdr :
|
|
{
|
|
__eh_frame_hdr = ABSOLUTE(.);
|
|
*(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*)
|
|
}
|
|
.eh_frame : ONLY_IF_RO
|
|
{
|
|
__eh_frame = ABSOLUTE(.);
|
|
KEEP (*(.eh_frame)) *(.eh_frame.*)
|
|
}
|
|
}
|
|
|
|
INSERT BEFORE .gcc_except_table;
|