NiosII中的undefined reference to “xxx”问题
1、笔者在工程中添加了两文件一个为watchdog.c,另一个就是对应的watchdog.h。然后在main.c文件中添加了头文件语句:
#include "watchdog/watchdog.h"

2、经过编译始终报错。
undefined reference to `WatchDog_Feed()'
undefined reference to `WatchDog_Init(void*)'
反复查找觉得都没有问题。


3、后来才发现,头文件的添加中,不仅要添加".h"文件,也要添加“.c"文件,更改如下:
#include "watchdog/watchdog.h"
#include "watchdog/watchdog.c"

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
                                阅读量:48
阅读量:147
阅读量:94
阅读量:109
阅读量:188