由于某些交叉编译错误,我无法编译最简单的C程序。 有些人可以对这个问题有所了解。
有史以来最简单的C程序:
#include <stdio.h>
int main()
{
printf( "Hello World!\n" );
return 0;
}
错误:
/usr/local/bin/ld: unrecognized option '--sysroot=/'
Try `ld --help' or `ld --usage' for more information.
collect2: error: ld returned 64 exit status
这就是我尝试编译的方式:gcc -o simple simple.c