无法分配 Space

Unable To Allocate Space

谁能帮我理解这条错误消息的确切含义;

Error[Lp011]: section placement failed 
            unable to allocate space for sections/blocks with a total estimated minimum size of 0x1cc1c bytes (max align 0x4) in  
<[0x08000000-0x0801b7ff]> (total uncommitted space 0x1b740). 
Error while running Linker 

我知道是关于运行内存不足,但我不明白内存有多少。

正如链接器所说,有一个 total uncommitted space 0x1b740 但您的程序使用 total estimated minimum size of 0x1cc1c bytes.

0x1b740是112448字节,0x1cc1c是117788字节,相差5340字节。

您的程序超过限制 5340 字节。