Files
espressif--esp-idf/components/esp_common/linux/sections.ld
T
2026-07-13 13:04:25 +08:00

17 lines
317 B
Plaintext

/*
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
SECTIONS
{
.esp_err_msg_tbl :
{
PROVIDE(_esp_err_msg_tbl_start = .);
KEEP(*(SORT(.esp_err_msg_tbl*)))
PROVIDE(_esp_err_msg_tbl_end = .);
}
}
INSERT AFTER .rodata;