x86: fix 'Error: .size expression for idle_stack does not evaluate to a constant' bug from Matt Campbell
This commit is contained in:
parent
a26b03d0d0
commit
c903fffc4a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue