mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-26 16:38:35 +00:00
Merge pull request #51 from philsmd/master
added note about how to fix the 'cannot find -lOpenCL' error to BUILD.md
This commit is contained in:
commit
7ed13c5fd7
@ -24,7 +24,7 @@ The following files are needed inside the *deps/tmp* directory:
|
|||||||
gdk_linux_amd64_352_55_release.run
|
gdk_linux_amd64_352_55_release.run
|
||||||
|
|
||||||
# Building oclHashcat
|
# Building oclHashcat
|
||||||
First get a copy of **oclHashcat** repository
|
First get a copy of the **oclHashcat** repository
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ git clone https://github.com/hashcat/oclHashcat.git
|
$ git clone https://github.com/hashcat/oclHashcat.git
|
||||||
@ -49,7 +49,7 @@ $ make install
|
|||||||
```
|
```
|
||||||
|
|
||||||
Useful tricks:
|
Useful tricks:
|
||||||
- build all binaries (see Note1):
|
- build all binaries (see Note1 and Note2):
|
||||||
```sh
|
```sh
|
||||||
$ make binaries
|
$ make binaries
|
||||||
```
|
```
|
||||||
@ -62,5 +62,19 @@ $ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/C
|
|||||||
|
|
||||||
the tools/deps.sh script does not clone this repo automatically since for native compilation it is not needed.
|
the tools/deps.sh script does not clone this repo automatically since for native compilation it is not needed.
|
||||||
|
|
||||||
|
Note2: if you get an error like the following one for "make binaries"
|
||||||
|
|
||||||
|
```sh
|
||||||
|
/usr/bin/ld: cannot find -lOpenCL
|
||||||
|
```
|
||||||
|
|
||||||
|
the main reason is probably that the 32-bit version of libOpenCL.so was not found.
|
||||||
|
|
||||||
|
A possible solution is to just symbolic link it (if the 32-bit version of libOpenCL.so.1 exists), for example:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
sudo ln -s /usr/lib/i386-linux-gnu/libOpenCL.so.1 /usr/lib/i386-linux-gnu/libOpenCL.so
|
||||||
|
```
|
||||||
|
|
||||||
=
|
=
|
||||||
Enjoy your fresh **oclHashcat** binaries ;)
|
Enjoy your fresh **oclHashcat** binaries ;)
|
||||||
|
Loading…
Reference in New Issue
Block a user