Adjust the linker scripts to use the same setup as ARM for CONFIG_ISR_TABLES_LOCAL_DECLARATION. Signed-off-by: Tom Hughes <tomhughes@chromium.org>
13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
/*
|
|
* Copyright (c) 2022 Antmicro <www.antmicro.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if LINKER_ZEPHYR_FINAL && defined(CONFIG_ISR_TABLES_LOCAL_DECLARATION)
|
|
INCLUDE isr_tables_vt.ld
|
|
KEEP(*(.vectors.__start))
|
|
#else
|
|
KEEP(*(.vectors.*))
|
|
#endif
|