出现Killed (Program Cc1plus)G++: Internal Error: Killed (Program Cc1plus)

出现Killed (Program Cc1plus)G++: Internal Error: Killed (Program Cc1plus)
原因是内存不足,可以查看自己的存储空间,适当在Lnux下增加临时swap空间(临时交换空间)
第一步:

$ sudo dd if=/dev/zero of=/home/swap bs=1024 count=512000

注释:of=/home/swap,放置swap的空间;count的大小就是增加的swap空间的大小,1024就是块大小,这里是1K,所以总共空间就是bs*count=512M

已使用内存,SWAP交换内存
第二步:

$ sudo mkswap /home/swap

注释:把刚才空间格式化成格式
第三步:

$ sudo swapon /home/swap

注释:使刚才创建的swap空间关闭空间:

$ sudo swapoff –a

注释:关闭开辟的swap空间,如果感觉不需要交换空间,可以在/home文件内把swap文件删除

参考:http://tianshuai.github.io/blog/2013/08/26/g-plus-plus-internal-error-killed-program-cc1plus/$ sudo dd if=/dev/zero of=/home/swap bs=1024 count=512000$ sudo mkswap /home/swap & sudo swapon /home/swap

你可能感兴趣的:(出现Killed (Program Cc1plus)G++: Internal Error: Killed (Program Cc1plus))