EVC如何调试LIB

举例来说:写一个LIB,内有func(),func2(),func3()三个函数,声明在Lib.h中,一切完备后。

再出成一个MainMenu.EXE文件,引用这个LIB的测试文件,如下所示:

1 void main() 
2 {
3     func();
4     func2();
5     func3(); 
6 
7 } 

加入你的那个LIB,编译。

成功后,回到你的LIB工程,在它的Project->setting->debug->General的Local executable path and file name中,写入刚才建的MainMenu.exe(可以使用后面的小三角称号进行浏览)。同时Project->setting->debug->General的Remoate executable path and file name中会出现对应模拟器或设备上MainMenu.exe的全路径。 运行LIB,设断点,开始调试。

posted @ 2016-03-05 10:10  91program  阅读(246)  评论(0编辑  收藏  举报