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 f5f9afb commit d944077Copy full SHA for d944077
cortex-m-rt/link.x
@@ -63,6 +63,28 @@ SECTIONS
63
KEEP(*(.debug_gdb_scripts))
64
}
65
66
+ .stlog 0 (INFO) : {
67
+ _sstlog_trace = .;
68
+ *(.stlog.trace*);
69
+ _estlog_trace = .;
70
+
71
+ _sstlog_debug = .;
72
+ *(.stlog.debug*);
73
+ _estlog_debug = .;
74
75
+ _sstlog_info = .;
76
+ *(.stlog.info*);
77
+ _estlog_info = .;
78
79
+ _sstlog_warn = .;
80
+ *(.stlog.warn*);
81
+ _estlog_warn = .;
82
83
+ _sstlog_error = .;
84
+ *(.stlog.error*);
85
+ _estlog_error = .;
86
+ }
87
88
/DISCARD/ :
89
{
90
/* Unused unwinding stuff */
0 commit comments