mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 21:03:23 +08:00

[+] Added dbgExtensionClass::print() [+] Added dbgBreakpointClass::print() [+] Added dbgStackFrameClass::print() git-svn-id: https://pykd.svn.codeplex.com/svn@61914 9b283d60-5439-405e-af05-b73fd8c4d996
28 lines
837 B
Batchfile
28 lines
837 B
Batchfile
@set CL=/nologo /EHsc /LD /MD /D "NDEBUG" /Ox /I%BOOST_ROOT% /I%PYTHON_ROOT%\include /I%DBG_SDK_ROOT%\inc
|
|
@rc /fo resource.res pykd.rc > nul
|
|
@cvtres /out:resource.obj /nologo /machine:x86 resource.res
|
|
@cl pykd.cpp ^
|
|
dbgcmd.cpp ^
|
|
dbgdump.cpp ^
|
|
dbgext.cpp ^
|
|
dbgmem.cpp ^
|
|
dbgmodule.cpp ^
|
|
dbgpath.cpp ^
|
|
dbgprint.cpp ^
|
|
dbgprocess.cpp ^
|
|
dbgreg.cpp ^
|
|
dbgsession.cpp ^
|
|
dbgsym.cpp ^
|
|
dbgsystem.cpp ^
|
|
dbgtype.cpp ^
|
|
stdafx.cpp ^
|
|
pykd.def ^
|
|
%DBG_SDK_ROOT%\lib\i386\dbgeng.lib ^
|
|
/link /out:pykd.pyd
|
|
@mt -nologo -manifest pykd.pyd.manifest -outputresource:pykd.pyd;1
|
|
@if exist *.obj del *.obj
|
|
@if exist *.res del *.res
|
|
@if exist *.lib del *.lib
|
|
@if exist *.exp del *.exp
|
|
@if exist *.manifest del *.manifest
|