NIOS中怎么调用scanf,getchar等函数出错?
- UID
- 102906
- 性别
- 男
|
NIOS中怎么调用scanf,getchar等函数出错?
程序如下: #include "stdio.h" int main() { int c; c=getchar(); printf("%d",c); return 0; } 错误提示: obj/hello_world.o(.text+0x1c): In function `main': ../hello_world.c:29: undefined reference to `getc' collect2: ld returned 1 exit status make: *** [hello_world_0.elf] Error 1 Build completed 帮帮我,什么原因啊,是不是什么地方要设置什么的?
[此贴子已经被作者于2008-6-5 12:05:18编辑过] |
|
|
|
|
|
- UID
- 519022
- 性别
- 男
|
有很多种原因,首先是你的SOPC种是否包含字符型设备,然后是你的nioside种,system property设置属性里面是否有定义 stdout stdin等设备 |
|
|
|
|
|