我在编译一个简单的 C 程序时遇到错误。
#include<stdio.h>
void main()
{
int i=5;
printf("I value is %d",i);
}
错误是..
/usr/local/bin/ld: this linker was not configured to use sysroots
collect2: error: ld returned 1 exit status
我的 gcc 版本是..
gcc (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
谁能知道我的问题是什么?