mirror of
https://github.com/apache/nuttx.git
synced 2026-05-30 21:36:28 +08:00
x86: fix 'Error: .size expression for idle_stack does not evaluate to a constant' bug from Matt Campbell
This commit is contained in:
@@ -6518,4 +6518,7 @@
|
|||||||
* Rename up_ledinit() to board_led_intialize() (2014-1-24).
|
* Rename up_ledinit() to board_led_intialize() (2014-1-24).
|
||||||
* Rename up_ledon() to board_led_on() and up_ledoff() to board_led_off()
|
* Rename up_ledon() to board_led_on() and up_ledoff() to board_led_off()
|
||||||
(2014-1-24).
|
(2014-1-24).
|
||||||
|
* arch/x86/src/qemu-i486/gemu_head.S: Patch from Matt Campbell
|
||||||
|
to fix 'Error: .size expression for idle_stack does not evaluate to
|
||||||
|
a constant" (2014-1-25).
|
||||||
|
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ hang:
|
|||||||
|
|
||||||
.type idle_stack, @object
|
.type idle_stack, @object
|
||||||
.comm idle_stack, CONFIG_IDLETHREAD_STACKSIZE, 32
|
.comm idle_stack, CONFIG_IDLETHREAD_STACKSIZE, 32
|
||||||
.size idle_stack, . - idle_stack
|
.size idle_stack, CONFIG_IDLETHREAD_STACKSIZE
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* .rodata
|
* .rodata
|
||||||
|
|||||||
Reference in New Issue
Block a user