0vercl0k / rp

rp++ is a fast C++ ROP gadget finder for PE/ELF/Mach-O x86/x64/ARM/ARM64 binaries.
MIT License
1.75k stars 250 forks source link

help with getting the 32-bit version for windows OS #50

Closed FLX-0x00 closed 1 year ago

FLX-0x00 commented 1 year ago

I can not find any good information how to compile the binary against windows 32-bit. Can you please provide some info about this? Thanks for your help!

0vercl0k commented 1 year ago

Ha, good question. Let me try to make that work and will come back to you!

Cheers

0vercl0k commented 1 year ago

Okay, you can generate a 32-bit solution this way:

rp\src>mkdir build32
rp\src\build32>cd build32
rp\src\build32>cmake .. -G "Visual Studio 17 2022" -A Win32

Then you can compile the solution with VS. Let me know if it works out!

Cheers

FLX-0x00 commented 1 year ago

Really nice! Thanks for your fast response! Works fine