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

Build instructions are inaccurate #10

Closed jduck closed 8 years ago

jduck commented 8 years ago
  1. These instructions don't seem to work:
# unix => cd build/ && cmake .. && make

First of all, "build" doesn't exist because git cannot store empty directories. Second, running "cmake .." puts the makefiles in .. too. So something more accurate would be:

# mkdir build && cd $_ && cmake .. && cd .. && make
jduck commented 8 years ago

Apparently my checkout was out of date :-/

The only thing still valid about this issue is the "cd build" part...

0vercl0k commented 8 years ago

The only build instructions I wrote are here https://github.com/0vercl0k/rp/tree/next & are accurate.

Cheers, 0vercl0k

jduck commented 8 years ago

Agreed. Sending a PR to correct what I'm talking about.