在我的Ubuntu 16.04.1 LTS中,我编写了一个hello.c如下:
#include <stdio.h>
int main(void)
{
printf("Hello World!");
return 0;
}
然后用
编译
> gcc hello.c
导致
cat: /home/linky/workspace/repo/repository/build-tool3: No such file or directory
/tmp/ccA62XPs.o: file not recognized: File truncated
collect2: error: ld returned 1 exit status
然后我输入了
> which gcc
/usr/bin/gcc
首先,我从我的系统中删除了gcc,然后重新安装它,但它没有用。我很困惑。请帮我。非常感谢