We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7651af3 commit d4a6516Copy full SHA for d4a6516
1 file changed
src/rp2_common/pico_standard_link/script_include/section_tls.incl
@@ -18,12 +18,12 @@ SECTIONS
18
PROVIDE( __tbss_size = SIZEOF(.tbss) );
19
PROVIDE( __tbss_offset = ADDR(.tbss) - __tls_start );
20
21
- /* this marker is present if the code knows we don't need __tls0 and __tls1... we decide
+ /* this marker is present if the code knows we don't need __tls0 and __tls1... we decide
22
* to waste 4 bytes in that case rather than possibly large amounts for __tls0 and __tls1
23
* which will never be used */
24
.tlsX_not_needed_marker (NOLOAD) : {
25
KEEP(*(.tlsX_not_needed_marker))
26
- }
+ } > RAM
27
PROVIDE( __tlsX_align = SIZEOF(.tlsX_not_needed_marker) > 0 ? 4 : __tls_align);
28
PROVIDE( __tlsX_size_align = SIZEOF(.tlsX_not_needed_marker) > 0 ? 0 : __tls_size_align);
29
0 commit comments