Where are GNU coreutils binaries located after building with make?

192 Views Asked by At

I want to practice fuzzing on the GNU coreutils with AFL. My plan is to compile coreutils binaries with the afl-gcc to be able to run AFL on them.

I have been able to successfully compile the coreutils with AFL's compiler by running ./configure CC="afl-gcc" CXX="afl-g++" --disable-shared; make

However, I don't understand where the binaries from running make are located after the compilation.

1

There are 1 best solutions below

0
On BEST ANSWER

I found out that the binaries can be located in the src folder after compilation.