File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 12
12
`jsvEvaluate` now uses memory area for execution of JS strings (fix #817)
13
13
Add `E.setBootCode` to allow JS scripts to be run without being in RAM (fix #740)
14
14
'Expecting a number or something iterable, got X' changed to exception rather than warning (gives stack trace)
15
+ Drop '.init' and '.fini' symbols, allowing GCC 5.x compilation on STM32
15
16
16
17
1v85 : Ensure HttpServerResponse.writeHead actually sends the header right away
17
18
- enables WebSocket Server support from JS
Original file line number Diff line number Diff line change @@ -178,6 +178,8 @@ def codeOut(s): linkerFile.write(s+"\n");
178
178
/* Remove stuff we don't want */
179
179
/DISCARD/ :
180
180
{
181
+ *(.init) /* we don't call init and fini anyway. GCC 5.x starting added them but then optimising them out */
182
+ *(.fini)
181
183
libc.a ( * )
182
184
libm.a ( * )
183
185
libgcc.a ( * )
You can’t perform that action at this time.
0 commit comments