From ea807de65b0485ac58b6eae576209c64d4d5c4e9 Mon Sep 17 00:00:00 2001 From: Oxore Date: Sun, 5 Mar 2023 20:20:45 +0300 Subject: Split app code and third party libraries --- Project/ld/_flash.ld | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Project/ld/_flash.ld (limited to 'Project/ld/_flash.ld') diff --git a/Project/ld/_flash.ld b/Project/ld/_flash.ld deleted file mode 100644 index ec94ea7..0000000 --- a/Project/ld/_flash.ld +++ /dev/null @@ -1,33 +0,0 @@ -SECTIONS { - . = ORIGIN(FLASH); - .text : { - KEEP(*(.stack)) - KEEP(*(.vectors)) - KEEP(*(.vectors*)) - KEEP(*(.text)) - . = ALIGN(4); - *(.text*) - . = ALIGN(4); - KEEP(*(.rodata)) - *(.rodata*) - . = ALIGN(4); - } >FLASH - - .preinit_array ALIGN(4): { - __preinit_array_start = .; - KEEP(*(.preinit_array)) - __preinit_array_end = .; - } >FLASH - - .init_array ALIGN(4): { - __init_array_start = .; - KEEP(*(.init_array)) - __init_array_end = .; - } >FLASH - - .fini_array ALIGN(4): { - __fini_array_start = .; - KEEP(*(.fini_array)) - __fini_array_end = .; - } >FLASH -} -- cgit v1.2.3