-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor logging and use plain
msg()
in IDA
This prevents a dead-lock with the log executor that surfaced when building with IDA SDK 7.6. Additionally, the log executor was not really necessary at all, as `msg()`/`vmsg()` are marked as being thread-safe. Also remove `executable` and `executable64` from BinDiff config. Those were never actually used by the Java UI in released versions and we do not support using BinDiff with `idat`/`idat64` anyways. This change also actually implements file logging in the plugins if requested. Before, this could only be requested on the command-line. Other chages: - Suppress MSVC compiler warnings in IDA SDK, disable some globally PiperOrigin-RevId: 374132575 Change-Id: I74c31664a5f2aad1c1bda907521b6028c8a8c8ab
- Loading branch information
1 parent
bd31841
commit 44d5b5f
Showing
9 changed files
with
54 additions
and
54 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
#elif __GNUC__ | ||
#pragma GCC diagnostic pop | ||
#elif _MSC_VER | ||
#pragma warning(pop) | ||
#endif | ||
|
||
#undef uint128 | ||
|
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
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