我正在将代码库移植到新的构建环境,并且在链接时遇到了这个问题。
Error: L6915E: Library reports error: Heap was used, but no heap region was defined
目标是32位Arm Cortex R5。不在代码库中的任何地方使用malloc或free。过去在类似的构建环境端口中,我通过使用microlib解决了这个问题。虽然这次没有这样的运气。
编辑:事实证明我可以通过在编译时使用microlib来解决问题。当我问这个问题时,我以为我试过了,但实际上没有。
答案 0 :(得分:0)
通过重新定位fputc并重新定义__stdout和__stdin解决了该问题。 fputc()的ARM C库实现似乎一直在使用malloc(),因此在重新定位fputc以使用我的UART驱动程序之后,我的代码中没有堆访问函数。
struct __FILE { int handle; /* Add whatever you need here */};
FILE __stdout;
FILE __stdin;
int fputc(int ch, FILE *f)
{
}