File tree Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Expand file tree Collapse file tree 1 file changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -70,18 +70,6 @@ SECTIONS
70
70
_etext = .; /* define a global symbol at end of code */
71
71
} >FLASH_FIRMWARE
72
72
73
- .ARM.extab :
74
- {
75
- *(.ARM.extab* .gnu.linkonce.armextab.*)
76
- } >FLASH_FIRMWARE
77
-
78
- .ARM :
79
- {
80
- __exidx_start = .;
81
- *(.ARM.exidx*)
82
- __exidx_end = .;
83
- } >FLASH_FIRMWARE
84
-
85
73
/* used by the startup to initialize data */
86
74
_sidata = .;
87
75
@@ -145,6 +133,14 @@ SECTIONS
145
133
. = ALIGN (4);
146
134
} >RAM
147
135
136
+ /* Remove exception unwinding information, since Circuit Python
137
+ does not support this GCC feature. */
138
+ /DISCARD/ :
139
+ {
140
+ *(.ARM.extab* .gnu.linkonce.armextab.*)
141
+ *(.ARM.exidx*)
142
+ }
143
+
148
144
/* Remove information from the standard libraries */
149
145
/*
150
146
/DISCARD/ :
You can’t perform that action at this time.
0 commit comments