-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Use library for command line parsing #3516
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
Conversation
15e9bc7
to
773a614
Compare
✅ Download x64dbg 1.0.1966 (commit ca288df713 by @peace-maker) |
✅ Download x64dbg 1.0.1967 (commit e6af3668e3 by @peace-maker) |
✅ Download x64dbg 1.0.1968 (commit 57e8c58e2c by @peace-maker) |
✅ Download x64dbg 1.0.1969 (commit 6d711514d9 by @peace-maker) |
✅ Download x64dbg 1.0.1970 (commit e35bf23105 by @peace-maker) |
In the current state, the commands specified on the commandline using The command should be applied once x64dbg is in debug mode to allow setting breakpoints right away when starting the debugger. |
✅ Download x64dbg 1.0.1979 (commit 5dab29b845 by @peace-maker) |
d9a967f
to
bbf9f46
Compare
✅ Download x64dbg 1.0.1984 (commit a50b15ecc0 by @peace-maker) |
bbf9f46
to
600065c
Compare
✅ Download x64dbg 1.0.1985 (commit e74f407285 by @peace-maker) |
✅ Download x64dbg 1.0.1986 (commit 87d194dca7 by @peace-maker) |
b82b651
to
5f39e72
Compare
✅ Download x64dbg 1.0.1988 (commit ba10c1b796 by @peace-maker) |
Currently useless, but after #3516 is merged this will be used for automated testing https://github.com/x64dbg/x64dbg_headless
03447d4
to
699342d
Compare
5f39e72
to
078ea3f
Compare
…tate This potentially fixes a lot of race conditions when trying to wait for startup
Thanks again for your patience, are you can see it required quite a lot of refactoring to get working 😅 |
This allows to add additional command line flags more easily.
It probably requires LLVMParty/args#3 unless I messed up the compilation setup.https://github.com/LLVMParty/args is copied into the tree. You can pass additional arguments to the target program after
--
on the command line.Add
-c
flag to run a command right away on startup and-cf
to run multiple commands read from a file on startup.Closes #3428