Help hahscat vs Linux Mint
#1
Linux mint. Hello everyone, guys, help me solve the problem. Downloaded hashcat https://hashcat.net/files/hashcat-6.2.4.tar.gz Unpacked, in the console I run the command "make":

gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/affinity.c -o obj/affinity.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/autotune.c -o obj/autotune.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/backend.c -o obj/backend.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/benchmark.c -o obj/benchmark.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/bitmap.c -o obj/bitmap.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/bitops.c -o obj/bitops.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/combinator.c -o obj/combinator.NATIVE.o -fpic
gcc -c -std=gnu99 -O2 -pipe -Iinclude/ -IOpenCL/ -Ideps/LZMA-SDK/C -Ideps/zlib -Ideps/zlib/contrib -Ideps/OpenCL-Headers -DWITH_BRAIN -Ideps/xxHash -DWITH_CUBIN -Ideps/unrar -DWITH_HWMON src/common.c -o obj/common.NATIVE.o -fpic
In file included from src/bitops.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
In file included from src/combinator.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
In file included from src/backend.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
In file included from src/bitmap.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
In file included from src/benchmark.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
In file included from src/common.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
In file included from src/affinity.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
In file included from src/autotune.c:6:
include/common.h:40:10: fatal error: string.h: No such file or directory
  40 | #include <string.h>
      |          ^~~~~~~~~~
compilation terminated.
compilation terminated.
make: *** [src/Makefile:562: obj/combinator.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/backend.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/bitops.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/benchmark.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/bitmap.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/common.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/autotune.NATIVE.o] Error 1
make: *** [src/Makefile:562: obj/affinity.NATIVE.o] Error 1
Reply
#2
Development Tools (correct) installed?
https://tecadmin.net/install-development...on-ubuntu/

How to find the includes is described here:
https://unix.stackexchange.com/questions...e-in-gedit
Reply
#3
(10-18-2021, 10:11 AM)ZerBea Wrote: Development Tools (correct) installed?
https://tecadmin.net/install-development...on-ubuntu/

How to find the includes is described here:
https://unix.stackexchange.com/questions...e-in-gedit

Thanks a lot, this https://tecadmin.net/install-development...on-ubuntu/ helped.
Reply