8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3032c commit fa7c287Copy full SHA for fa7c287
lib/memmap_default.ld
@@ -94,7 +94,9 @@ SECTIONS
94
/* bit of a hack right now to exclude all floating point and time critical (e.g. memset, memcpy) code from
95
* FLASH ... we will include any thing excluded here in .data below by default */
96
*(.init)
97
- *(EXCLUDE_FILE(*libgcc.a: *libc.a:*lib_a-mem*.o *libm.a:) .text*)
+ /* 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
+
100
*(.fini)
101
/* Pull all c'tors into .text */
102
*crtbegin.o(.ctors)
0 commit comments