zoukankan      html  css  js  c++  java
  • Windows下使用vim编写代码,使用nmake编译代码,使用vs来调试代码

    1、编写代码

    2、编写Makefile,如果要调试,

      2.1、需要在编译的时候加上/Zi ( Generates complete debugging information),编译由cl.exe来完成

      2.2、需要在链接选项中指定/DEBUG,(The /DEBUG option creates debugging information for the .exe file or DLL.

    The linker puts the debugging information into a program database (PDB). It updates the PDB during subsequent builds of the program.

    An .exe file or DLL created for debugging contains the name and path of the corresponding PDB. The debugger reads the embedded name and uses the PDB when you debug the program. The linker uses the base name of the program and the extension .pdb to name the program database, and embeds the path where it was created. To override this default, set /PDB and specify a different file name.)这样就会生成pdb文件,链接由link.exe来完成

    3、devevn.exe 执行文件 (打开ide,  在源码文件中打上断点,或参考云风大神的博文:IDE 不是程序员的唯一选择(一),使用中断语句直接在代码中加断点)

    以下是一个Makefile文件,来自《深入浅出MFC 第二版》

    Hello.exe: StdAfx.obj Hello.obj Hello.res
        link.exe /nologo /Debug /subsystem:windows /incremental:no 
            /machine:I386 /out:"Hello.exe" 
            Hello.obj StdAfx.obj Hello.res 
            mfc80d.lib
    
    StdAfx.obj: StdAfx.cpp StdAfx.h
        cl.exe /nologo /MDd /W3 /GX /O2 /D "WIN32" /D "DEBUG" /D "_WINDOWS" 
            /D "_AFXDLL" /D "_MBCS" /Fp"Hello.pch" /Yc"StdAfx.h" /c StdAfx.cpp
    
    Hello.obj: Hello.cpp Hello.h StdAfx.h
        cl.exe /nologo /MDd /W3 /GX /O2 /D "WIN32" /D "DEBUG" /D "_WINDOWS" 
            /D "_AFXDLL" /D "_MBCS" /Fp"Hello.pch" /Yc"StdAfx.h" /c Hello.cpp
    
    Hello.res: Hello.rc Hello.ico
        rc.exe /l 0x404 /Fo"Hello.res" /D "DEBUG" /D "_AFXDLL" Hello.rc
    
    Clean:
        del *.exe *.obj *.res *.manifest *.pch *.pdb
  • 相关阅读:
    如何选择开源许可证?(转)
    gdb的使用(转)
    git的使用
    2017-3-13 leetcode 4 11 15
    2017-3-12 leetcode 167 209 216
    2017-3-11 leetcode 217 219 228
    2017-3-10 leetcode 229 238 268
    1175: 零起点学算法82——find your present
    1174: 零起点学算法81——求整数绝对值
    1173: 零起点学算法80——求实数绝对值
  • 原文地址:https://www.cnblogs.com/shanql/p/6662111.html
Copyright © 2011-2022 走看看