Current implementation of the FreeRTOS Demo Posix Blinky Application revolves around static allocations. Is there a workaround or a simple patch to help me build the same using configSUPPORT_DYNAMIC_ALLOCATION
?
The linking errors out when configSUPPORT_DYNAMIC_ALLOCATION
is while keeping configSUPPORT_STATIC_ALLOCATION
disabled.
/usr/bin/ld: CMakeFiles/posix_demo.dir/code_coverage_additions.c.o: in function `prvStaticAllocationsWithNullBuffers':
~/FreeRTOS/Demo/Posix_GCC/code_coverage_additions.c:99: undefined reference to `xEventGroupCreateStatic'
/usr/bin/ld: ~/FreeRTOS/Demo/Posix_GCC/code_coverage_additions.c:103: undefined reference to `xTaskCreateStatic'
/usr/bin/ld: ~/FreeRTOS/Demo/Posix_GCC/code_coverage_additions.c:111: undefined reference to `xTaskCreateStatic'