Reset_Handler symbol not found. Why ???

Hello!
I’m trying to build the FreeRTOS demo for the LM3S811 evb, using the Atollic TrueSTUDIO Lite Stellaris Version.
I get the following warning:
    - cannot find entry symbol Reset_Handler; defaulting to 00000000
The startup.c and the stellaris_flash.ld files are the original atollic ones generated with the project.
Where is my mistake?
Any idea?
Thank you very much
Antonio from Milano(Italy)

Reset_Handler symbol not found. Why ???

As per point 1 on http://www.freertos.org/FAQ-how-to-use-the-FreeRTOS-support-forum.html , this is not a FreeRTOS question.  It seems though, that the warning describes what the problem is.  Somewhere in the project or linker files it says the reset symbol is Reset_Handler, but Reset_Handler is not defined anywhere in the code you are feeding the compiler and linker.  I would guess you have mixed up different projects, build scripts, start up files, and linker files somewhere along the way. Regards.