forked from Imagelibrary/binutils-gdb
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:
@@ -15,5 +15,5 @@ SECTIONS
|
||||
.got : { *(.got) *(.got.plt)}
|
||||
. = 0x12340000;
|
||||
.far : { *(.far) }
|
||||
.ARM.attributes 0 : { *(.ARM.atttributes) }
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
||||
@@ -10,5 +10,5 @@ SECTIONS
|
||||
.text : { *(.text) }
|
||||
. = 0x28000;
|
||||
.got : { *(.got) *(.got.plt) }
|
||||
.ARM.attributes 0 : { *(.ARM.atttributes) }
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
||||
@@ -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. */
|
||||
|
||||
@@ -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. */
|
||||
|
||||
@@ -19,5 +19,5 @@ SECTIONS
|
||||
.rela.plt : { *(.rela.plt) *(.rela.iplt) }
|
||||
. = 0x12340000;
|
||||
.far : { *(.far) }
|
||||
.ARM.attributes 0 : { *(.ARM.atttributes) }
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
||||
@@ -19,5 +19,5 @@ SECTIONS
|
||||
.got : { *(.got) *(.got.plt)}
|
||||
. = 0x12340000;
|
||||
.far : { *(.far) }
|
||||
.ARM.attribues 0 : { *(.ARM.atttributes) }
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
||||
@@ -28,5 +28,5 @@ SECTIONS
|
||||
.got : { *(.got) *(.got.plt)}
|
||||
. = 0x12340000;
|
||||
.far : { *(.far) }
|
||||
.ARM.attribues 0 : { *(.ARM.atttributes) }
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
||||
@@ -15,5 +15,5 @@ SECTIONS
|
||||
*(.v4_bx)
|
||||
} =0
|
||||
/DISCARD/ : { *(.ARM.exidx*) }
|
||||
.ARM.attribues 0 : { *(.ARM.atttributes) }
|
||||
.ARM.attributes 0 : { *(.ARM.attributes) }
|
||||
}
|
||||
|
||||
@@ -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) }
|
||||
}
|
||||
|
||||
@@ -11,5 +11,5 @@ SECTIONS
|
||||
*(.c6xabi.extab*)
|
||||
} =0
|
||||
/DISCARD/ : { *(.c6xabi.exidx*) }
|
||||
.c6xabi.attribues 0 : { *(.c6xabi.atttributes) }
|
||||
.c6xabi.attributes 0 : { *(.c6xabi.attributes) }
|
||||
}
|
||||
|
||||
@@ -16,5 +16,5 @@ SECTIONS
|
||||
.got : { *(.got) *(.got.plt)}
|
||||
. = 0x12340000;
|
||||
.far : { *(.far) }
|
||||
.c6xabi.attribues 0 : { *(.c6xabi.atttributes) }
|
||||
.c6xabi.attributes 0 : { *(.c6xabi.attributes) }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user