AArch64, Arm and TIC6x tests: fix typo in linker scripts

The linker scripts for AArch64 and TIC6x were probably originally copied from
Arm testsuite, and contain the same typo in the name of the attributes section.

This patch fixes the typo across all the testsuites.
This commit is contained in:
Matthieu Longo
2025-05-21 11:13:33 +01:00
parent e4a998f4b6
commit 2c0e910caf
11 changed files with 12 additions and 12 deletions

View File

@@ -15,5 +15,5 @@ SECTIONS
.got : { *(.got) *(.got.plt)}
. = 0x12340000;
.far : { *(.far) }
.ARM.attributes 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -10,5 +10,5 @@ SECTIONS
.text : { *(.text) }
. = 0x28000;
.got : { *(.got) *(.got.plt) }
.ARM.attributes 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -15,7 +15,7 @@ SECTIONS
.got : { *(.got) *(.got.plt)}
. = 0x12340000;
.far : { *(.far) }
.ARM.attributes 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
/* Providing a .data section triggers a non-executable segment to be
generated, which gives somewhere else for the linker to put the TLS
segment without creating a RWX permissioned one. */

View File

@@ -15,7 +15,7 @@ SECTIONS
.got : { *(.got) *(.got.plt)}
. = 0x12340000;
.far : { *(.far) }
.ARM.attributes 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
/* Providing a .data section triggers a non-executable segment to be
generated, which gives somewhere else for the linker to put the TLS
segment without creating a RWX permissioned one. */

View File

@@ -19,5 +19,5 @@ SECTIONS
.rela.plt : { *(.rela.plt) *(.rela.iplt) }
. = 0x12340000;
.far : { *(.far) }
.ARM.attributes 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -19,5 +19,5 @@ SECTIONS
.got : { *(.got) *(.got.plt)}
. = 0x12340000;
.far : { *(.far) }
.ARM.attribues 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -28,5 +28,5 @@ SECTIONS
.got : { *(.got) *(.got.plt)}
. = 0x12340000;
.far : { *(.far) }
.ARM.attribues 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -15,5 +15,5 @@ SECTIONS
*(.v4_bx)
} =0
/DISCARD/ : { *(.ARM.exidx*) }
.ARM.attribues 0 : { *(.ARM.atttributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -3,7 +3,7 @@ SECTIONS {
foo_a = bar_a;
foo_t = bar_t;
foo_o = bar_o;
*(.text)
*(.text)
}
.ARM.attribues 0 : { *(.ARM.attributes) }
.ARM.attributes 0 : { *(.ARM.attributes) }
}

View File

@@ -11,5 +11,5 @@ SECTIONS
*(.c6xabi.extab*)
} =0
/DISCARD/ : { *(.c6xabi.exidx*) }
.c6xabi.attribues 0 : { *(.c6xabi.atttributes) }
.c6xabi.attributes 0 : { *(.c6xabi.attributes) }
}

View File

@@ -16,5 +16,5 @@ SECTIONS
.got : { *(.got) *(.got.plt)}
. = 0x12340000;
.far : { *(.far) }
.c6xabi.attribues 0 : { *(.c6xabi.atttributes) }
.c6xabi.attributes 0 : { *(.c6xabi.attributes) }
}