mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-24 21:37:11 +00:00
start no longer a global symbol per Eric Norum's request.
Also, I ran across a nasty problem the first time I tried
downloading and running an application compiled with the new
snapshot. To make a very long story short, the `start' in
...../m68k/gen6860/start360/start360.s must not be global. The
change is simple -- just remove the
.globl start
from start360.s.
This commit is contained in:
@@ -311,7 +311,12 @@ spurious_interrupt:
|
||||
.align 2
|
||||
.long ETHERNET_ADDRESS | Low-order 3 octets of ethernet address
|
||||
|
||||
.global start
|
||||
/*
|
||||
* For some reason, the symbol start must not be global.
|
||||
*
|
||||
* .global start
|
||||
*/
|
||||
|
||||
/*
|
||||
* Initial PC
|
||||
*/
|
||||
|
||||
@@ -311,7 +311,12 @@ spurious_interrupt:
|
||||
.align 2
|
||||
.long ETHERNET_ADDRESS | Low-order 3 octets of ethernet address
|
||||
|
||||
.global start
|
||||
/*
|
||||
* For some reason, the symbol start must not be global.
|
||||
*
|
||||
* .global start
|
||||
*/
|
||||
|
||||
/*
|
||||
* Initial PC
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user