Port FREERTOS on efm32

Hello everybody
Since a week I tried to port FreeRTOS on the efm32 gecko dev kit,and I have this error : undefined reference to `vTaskDelete’. I dont work on IAR , i just copied files into Coocox CoID ,and it compiles , but when the link step begin I have this error.
Can you please tell me what i’m doing wrong?

Port FREERTOS on efm32

Search the FreeRTOS/Source directory for the definition of vTaskDelete() – look at it – and you will probably see what you are doing wrong. Regards.

Port FREERTOS on efm32

I did it ther is no definition just this : void vTaskDelete( xTaskHandle pxTaskToDelete ) PRIVILEGED_FUNCTION;

Port FREERTOS on efm32

sorry i found it !! I will see if i can solve the problem thanks

Port FREERTOS on efm32

I found that this line  makes the problem : #if ( INCLUDE_vTaskDelete == 1 )
what that means?However  I included the path directory where the file definition is present.

Port FREERTOS on efm32

ANOTHER QUESTION IF YOU ALLOW : I have also an error : #error This demo uses timers. configUSE_TIMERS must be set to 1 in FreeRTOSConfig.h. and in the config file :
#ifndef configUSE_TIMERS
    #error This demo uses timers.  configUSE_TIMERS must be set to 1 in FreeRTOSConfig.h.
#endif
#if configUSE_TIMERS != 1
    #error This demo uses timers.  configUSE_TIMERS must be set to 1 in FreeRTOSConfig.h.
#endif
thats mean in the two cases I have the same error ,I don’t really understand all thes process because it is not really my work ,so any suggestion to unblock these problems?what i’m missing exactly?

Port FREERTOS on efm32

As the error says, you need to set configuration options in FreeRTOSConfig.h, which will be in your application source tree somewhere. The options are listed here http://www.freertos.org/a00110.html