Home  >  Q&A  >  body text

eclipse调试 如何进入库函数

#include <stdio.h>
#include <string.h>
 
 int main(int argc, char* argv[])
 {
 	char dst[] = "hello";
 	char *src = "woh";
 
 	strcpy(dst, src);
 	return 0;
 }

eclipse调试如何进入strcpy库函数 , stepinto没进入。

阿神阿神2696 days ago687

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-21 10:59:25

    The library functions are all compiled, and there is no source code in eclipse. Of course, stepinto cannot enter.

    If you want to see the source code, you can download the source code of eglibc and take a look.

    reply
    0
  • Cancelreply