Unterminated argument list invoking macro "startup ipi hook"
From CPanelDirect
Your GCC is too old (centos3?)
However changing the file arch/x86/kernel/smpboot.c
startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
#ifdef CONFIG_X86_64
(unsigned long)init_rsp);
#else
(unsigned long)stack_start.sp);
#endif
to
#ifdef CONFIG_X86_64 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,(unsigned long)init_rsp); #else startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,(unsigned long)stack_start.sp); #endif
Can fix this.

