-
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.
v1.0.2: IDA 7.4 support and bug fixes
- climacros was crashing when idat[64].exe was executed - updated built-in macros to work with IDA 7.4
- Loading branch information
Showing
3 changed files
with
63 additions
and
19 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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@echo off | ||
|
||
:: checkout the Batchography book | ||
|
||
setlocal | ||
|
||
if not defined IDASDK ( | ||
echo IDASDK environment variable not set. | ||
echo Also make sure ida-cmake is installed in IDASDK. | ||
echo See: https://github.com/0xeb/ida-cmake | ||
goto :eof | ||
) | ||
|
||
if not exist build ( | ||
mkdir build | ||
pushd build | ||
cmake -A x64 -G "Visual Studio 15" .. | ||
popd | ||
) | ||
|
||
if not exist build64 ( | ||
mkdir build64 | ||
pushd build64 | ||
cmake -A x64 -DEA64=YES -G "Visual Studio 15" .. | ||
popd | ||
) | ||
|
||
echo. | ||
echo All done! | ||
echo. |