首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

NIOS中怎么调用scanf,getchar等函数出错?

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编辑过]

...
有很多种原因,首先是你的SOPC种是否包含字符型设备,然后是你的nioside种,system property设置属性里面是否有定义 stdout stdin等设备
返回列表