Changeset 6970c47 in rtems-tools
- Timestamp:
- 01/12/23 21:09:20 (2 months ago)
- Branches:
- master
- Children:
- a735d42
- Parents:
- 66b81d6
- git-author:
- Kinsey Moore <kinsey.moore@…> (01/12/23 21:09:20)
- git-committer:
- Joel Sherrill <joel@…> (01/17/23 15:32:45)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
linkers/rtems-syms.cpp
r66b81d6 r6970c47 243 243 c.write_line ("asm(\" .asciz \\\"" + sym.name () + "\\\"\");"); 244 244 245 if (sym.type() == STT_TLS) 246 { 247 c.write_line ("asm(\" .type \\\"" + sym.name () + "\\\", %tls_object\");"); 248 } 249 245 250 if (embed) 246 251 { -
rtemstoolkit/rld-elf.cpp
r66b81d6 r6970c47 892 892 if (((stype == STT_NOTYPE) || 893 893 (stype == STT_OBJECT) || 894 (stype == STT_TLS) || 894 895 (stype == STT_FUNC)) && 895 896 ((weak && (sbind == STB_WEAK)) || -
rtemstoolkit/rld-symbols.cpp
r66b81d6 r6970c47 278 278 type = "STT_FILE "; 279 279 break; 280 case STT_TLS: 281 type = "STT_TLS "; 282 break; 280 283 default: 281 284 if ((type_val >= STT_LOPROC) && (type_val <= STT_HIPROC))
Note: See TracChangeset
for help on using the changeset viewer.