OLD | NEW |
1 /* | 1 /* |
2 ***************************************************************************** | 2 ***************************************************************************** |
3 ** | 3 ** |
4 | 4 |
5 ** File : LinkerScript.ld | 5 ** File : LinkerScript.ld |
6 ** | 6 ** |
7 ** Abstract : Linker script for STM32F746NGHx Device with | 7 ** Abstract : Linker script for STM32F746NGHx Device with |
8 ** 1024KByte FLASH, 320KByte RAM | 8 ** 1024KByte FLASH, 320KByte RAM |
9 ** | 9 ** |
10 ** Set heap size, stack size and stack location according | 10 ** Set heap size, stack size and stack location according |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 { | 179 { |
180 libc.a ( * ) | 180 libc.a ( * ) |
181 libm.a ( * ) | 181 libm.a ( * ) |
182 libgcc.a ( * ) | 182 libgcc.a ( * ) |
183 } | 183 } |
184 | 184 |
185 .ARM.attributes 0 : { *(.ARM.attributes) } | 185 .ARM.attributes 0 : { *(.ARM.attributes) } |
186 } | 186 } |
187 | 187 |
188 | 188 |
OLD | NEW |