mirror of
https://github.com/apache/nuttx.git
synced 2026-08-02 20:59:02 +00:00
Fix SAMA5 vector linking issue
This commit is contained in:
parent
77e1c27005
commit
e6beda428a
4 changed files with 5 additions and 4 deletions
|
|
@ -58,7 +58,8 @@
|
|||
* Vector initialization block
|
||||
****************************************************************************/
|
||||
|
||||
.globl _vector_start
|
||||
.section .vectors, "ax"
|
||||
.globl _vector_start
|
||||
|
||||
/* These will be relocated to VECTOR_BASE. */
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ SECTIONS
|
|||
{
|
||||
.text : {
|
||||
_stext = ABSOLUTE(.);
|
||||
*(.vectors)
|
||||
KEEP (*(.vectors))
|
||||
*(.text .text.*)
|
||||
*(.fixup)
|
||||
*(.gnu.warning)
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ SECTIONS
|
|||
{
|
||||
.text : {
|
||||
_stext = ABSOLUTE(.);
|
||||
*(.vectors)
|
||||
KEEP (*(.vectors))
|
||||
*(.text .text.*)
|
||||
*(.fixup)
|
||||
*(.gnu.warning)
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ SECTIONS
|
|||
{
|
||||
.locked : {
|
||||
_slocked = ABSOLUTE(.);
|
||||
*(.vectors)
|
||||
KEEP (*(.vectors))
|
||||
up_head.o locked.r (.text .text.*)
|
||||
up_head.o locked.r (.fixup)
|
||||
up_head.o locked.r (.gnu.warning)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue