uqtur 发表于 2006-4-13 16:54:26

SKyeye + uCLinux -hello

我的hello 程序在skyeye + uclinux 上运行了。
然后写了下面hello.c的程序。
main()
{
int a,b;
printf("input two number");
scanf("%d,%d",&a,&b);
printf("%d",a+b);
return 0;
}
这时程序不能运行,主要是scanf 语句。怎么解决?

ksh 发表于 2006-4-14 09:32:18

compile your program staticlly by add -static in your compilation.
页: [1]
查看完整版本: SKyeye + uCLinux -hello