vmlinux.lds.h 416 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_SH_VMLINUX_LDS_H
  3. #define __ASM_SH_VMLINUX_LDS_H
  4. #include <asm-generic/vmlinux.lds.h>
  5. #ifdef CONFIG_DWARF_UNWINDER
  6. #define DWARF_EH_FRAME \
  7. .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) { \
  8. __start_eh_frame = .; \
  9. *(.eh_frame) \
  10. __stop_eh_frame = .; \
  11. }
  12. #else
  13. #define DWARF_EH_FRAME
  14. #endif
  15. #endif /* __ASM_SH_VMLINUX_LDS_H */