-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
99 additions
and
383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,34 @@ | ||
@setlocal | ||
@set CO=/W3 /nologo /O2 /c /Fo: | ||
@set LO=/nologo /Fe: | ||
@set DO=/nologo /dll | ||
@set CO=/DNTDDI_VERSION=0x60000000 /D_WIN32_WINNT=0x600 /MT /EHs-c- /W3 /nologo /O2 /c /Fo: | ||
@set LO=/SUBSYSTEM:console /nologo ntdll.lib kernel32.lib libvcruntime.lib | ||
@set DO=/nologo /dll ntdll.lib shell32.lib | ||
@setlocal | ||
call "%VS140COMNTOOLS%..\..\vc\vcvarsall.bat" x64 | ||
cl %CO% dbg.obj dbg.c | ||
cl %CO% inject.obj inject.c | ||
cl %CO% patch.obj patch.c | ||
cl %CO% hooks.obj hooks.c | ||
cl %CO% emit.obj emit.c | ||
cl %CO% handle.obj handle.c | ||
cl %CO% utf8.obj utf8.c | ||
cl %CO% fsatrace.obj fsatrace.c | ||
cl %LO% fsatrace.exe fsatrace.obj inject.obj | ||
link %LO% /out:fsatrace.exe fsatrace.obj dbg.obj inject.obj shell32.lib | ||
cl %CO% fsatrace64.obj fsatracedll.c | ||
link %DO% /out:fsatrace64.dll fsatrace64.obj inject.obj ntdll.lib | ||
link %DO% /out:fsatrace64.dll fsatrace64.obj inject.obj patch.obj hooks.obj emit.obj handle.obj utf8.obj | ||
@endlocal | ||
@setlocal | ||
call "%VS140COMNTOOLS%..\..\vc\vcvarsall.bat" x86 | ||
cl %CO% dbg.obj dbg.c | ||
cl %CO% inject.obj inject.c | ||
cl %CO% patch.obj patch.c | ||
cl %CO% hooks.obj hooks.c | ||
cl %CO% emit.obj emit.c | ||
cl %CO% handle.obj handle.c | ||
cl %CO% utf8.obj utf8.c | ||
cl %CO% fsatracehelper.obj fsatracehelper.c | ||
cl %LO% fsatracehelper.exe fsatracehelper.obj | ||
link %LO% /out:fsatracehelper.exe fsatracehelper.obj | ||
cl %CO% fsatrace32.obj fsatracedll.c | ||
link %DO% /out:fsatrace32.dll fsatrace32.obj inject.obj ntdll.lib | ||
link %DO% /out:fsatrace32.dll fsatrace32.obj inject.obj patch.obj hooks.obj emit.obj handle.obj utf8.obj | ||
@endlocal | ||
@endlocal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.