From c903fffc4a861df71650e9687c0039c5d348ddce Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 25 Jan 2014 13:53:23 -0600 Subject: [PATCH] x86: fix 'Error: .size expression for idle_stack does not evaluate to a constant' bug from Matt Campbell --- arch/x86/src/qemu/qemu_head.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/src/qemu/qemu_head.S b/arch/x86/src/qemu/qemu_head.S index 22c4904695..8e9c8a1db4 100755 --- a/arch/x86/src/qemu/qemu_head.S +++ b/arch/x86/src/qemu/qemu_head.S @@ -141,7 +141,7 @@ hang: .type idle_stack, @object .comm idle_stack, CONFIG_IDLETHREAD_STACKSIZE, 32 - .size idle_stack, . - idle_stack + .size idle_stack, CONFIG_IDLETHREAD_STACKSIZE /**************************************************************************** * .rodata