main。cpp文件中 main函数,调用了FuncA(); FuncB()这两个函数;
app.c文件中,也调用了FuncA(); FuncB()这两个函数;
bsp。c文件中定义的FuncA(); FuncB()这两个函数;
编译的时候没有问题;
链接的时候提示undefined symbol FuncA() referred from main.o;
undefined symbol FuncB() referred from main.o;
app。c中调用FuncA(); FuncB(),链接是正常的!