how to debug source code from Google code repository

后端 未结 2 1490
暗喜
暗喜 2021-02-06 16:49

I want to debug the following source code from google code repository,

http://code.google.com/p/rx/

My problem is, I am unable to find a suitab

相关标签:
2条回答
  • 2021-02-06 17:28

    You can create a new project with your favorite IDE and then import the sources manually.

    You might also consider using a decent editor. Personally, I prefer vim and don't see any appealing reason to use an editor 10 times the size of the actual project.

    0 讨论(0)
  • 2021-02-06 17:30

    You can create a dummy makefile :

    all:
            g++ code_dir/*/*.?pp -o fake
    

    and then import project using Makefiles. This is possible to do for kdevelop and eclipse (not sure for other IDEs).

    Take a note that the above makefile imports all files with a *.?pp template from all directories in the code_dir directory.

    0 讨论(0)
提交回复
热议问题