Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Error when Making statsprocessor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I get this error message:

f14@f14-Precision-WorkStation-T7500:~$ make -f '/home/f14/Downloads/statsprocessor-master/src/sp.c' 

/home/f14/Downloads/statsprocessor-master/src/sp.c:13: *** missing separator.  Stop.

Any suggestions on how to fix this? Thanks.
That's not how make works. You're telling it to use sp.c as a makefile, which clearly won't work.

What you probably want to do is:

Code:
cd /home/f14/Downloads/statsprocessor-master/src/
make
(12-24-2015, 08:21 PM)epixoip Wrote: [ -> ]That's not how make works. You're telling it to use sp.c as a makefile, which clearly won't work.

What you probably want to do is:

Code:
cd /home/f14/Downloads/statsprocessor-master/src/
make

Exactly right. Thank you very much.