8000 Linker tweaks for RAM-resident PicoDVI library functions (#1541) · OndineBio/arduino-pico@fa7c287 · GitHub
[go: up one dir, main page]

Skip to content

Commit fa7c287

Browse files
Linker tweaks for RAM-resident PicoDVI library functions (earlephilhower#1541)
1 parent 9b3032c commit fa7c287

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/memmap_default.ld

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ SECTIONS
9494
/* bit of a hack right now to exclude all floating point and time critical (e.g. memset, memcpy) code from
9595
* FLASH ... we will include any thing excluded here in .data below by default */
9696
*(.init)
97-
*(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a:) .text*)
97+
/* Some of these excludes required for PicoDVI library, won't affect most code */
98+
*(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a: *interp.c.obj *divider.S.obj *PicoDVI.cpp.o *dvi.c.o) .text*)
99+
98100
*(.fini)
99101
/* Pull all c'tors into .text */
100102
*crtbegin.o(.ctors)

0 commit comments

Comments
 (0)
0