-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't build with IDA 6.8 #10
Comments
This was an update for 6.9; see 8b0ef6a . It might be nice to make all these changes conditional at some point. |
OK, I though so. Maybe it's really better at least to wrap this code in some #IF or so. |
It is great to support the latest versions of IDA. But, almost all guys are using IDA that was leaked. When somebody updates its project to the latest (nonpublic) version, the author will lose many users. |
I have no intention to support leaked versions of IDA. |
DOSBox with IDADos debugger can't be built with IDA 6.8 SDK on Linux.
Function prototype in idados/dosbox_debmod.h looks as follows:
virtual int idaapi dbg_attach_process(pid_t process_id, int event_id, int flags);
But it should be the same as in idasdk68/plugins/debugger/debmod.h:
virtual int idaapi dbg_attach_process(pid_t process_id, int event_id) = 0;
Fixing it makes dosbox to compile and run successfully.
The text was updated successfully, but these errors were encountered: