找回密码
 注册
搜索
查看: 681|回复: 2

[资料] MTK 编译 modis 出错

[复制链接]
发表于 2010-7-10 20:01:40 | 显示全部楼层 |阅读模式
VC编译modis时出现链接错误,其中一条如下:
custom.lib(custom_config.obj) : error LNK2001: unresolved external symbol _custom_touchpad_task_create

意思大概是在custom_config.c中找不到外部符号 custom_touchpad_task_create
在custom_config.c文件中有如下声明:
extern kal_bool custom_touchpad_task_create(comptask_handler_struct **handle);

而在文件touchpad.c中有如下函数定义:
kal_bool custom_touchpad_task_create(comptask_handler_struct **handle)
{
#if defined(__MTK_TARGET__)
    return Touchpad_Task_Create(handle);
#else
    return KAL_FALSE;
#endif
}

显然custom_config.c中的外部函数是指touchpad.c中的custom_touchpad_task_create函数,请问大侠,如何才能让VC在
custom_config.c文件中找到外部函数 custom_touchpad_task_create (该函数在touchpad.c中定义),谢谢!
 楼主| 发表于 2010-7-10 20:04:59 | 显示全部楼层
我试图在touchpad.c文件中将函数声明为extern,如下:
extern kal_bool custom_touchpad_task_create(comptask_handler_struct **handle)
{
#if defined(__MTK_TARGET__)
    return Touchpad_Task_Create(handle);
#else
    return KAL_FALSE;
#endif
}

并在VC中重新进行build,但还是出现相同的错误:
custom.lib(custom_config.obj) : error LNK2001: unresolved external symbol _custom_touchpad_task_create

请大侠指点!!
点评回复

使用道具 举报

发表于 2010-7-15 15:13:15 | 显示全部楼层
关注,帮顶
点评回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

Archiver|手机版|小黑屋|52RD我爱研发网 ( 沪ICP备2022007804号-2 )

GMT+8, 2025-1-24 17:41 , Processed in 0.045629 second(s), 16 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表