linux gcc error cc1,gcc cc1:内存不足分配

我正在尝试使用Angstrom Linux编译我的BeagleBoard中的源代码。

昨天我能够编译我的代码。但是今天我无法编译代码,它说:

ccl: out of memory allocating 268439608 bytes after a total of 405504 bytes

make *** [getimagefromcam1.o] Error 1我的编译字符串是:

gcc getimagefromcam1.c `pkg-config --cflags --libs opencv` -o getimagefromcam1 -lpthread代码是:

#include

#include

#include

#include

int main(int argc, char* argv[])

{

CvCapture* camera = cvCreateCameraCapture(0); // Use the default camera

IplImage* frame = 0;

IplImage img;

cvSetCaptureProperty(camera,CV_CAP_PROP_FRAME_WIDTH,2016) ;

cvSetCaptureProperty(camera,CV_CAP_PROP_FRAME_HEIGHT,1512);

frame = cvQueryFrame(camera); //need to capture at least one extra frame

frame = cvQueryFrame(camera);

if (frame != NULL) {

printf("got frame 1\n\r");

cvSaveImage("webcam1.jpg", frame,0);

} else {

printf("Null frame 1\n\r");

}

frame = cvQueryFrame(camera); //need to capture at least one extra frame

frame = cvQueryFrame(camera);

if (frame != NULL) {

printf("got frame 1\n\r");

cvSaveImage("webcam1.jpg", frame,0);

} else {

printf("Null frame 1\n\r");

}

cvReleaseCapture(&camera);

return 0;

}当我写“免费”是说

total used free shared buffers cached

Mem: 241260 221256 20004 0 13748 116184

-/+ buffers/cache: 91324 149936

Swap: 0 0 0我该如何解决它?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值