You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/docs/BUILD.md

73 lines
1.4 KiB

9 years ago
oclHashcat build documentation
=
# Revision:
* 1.2
9 years ago
# Authors:
* Gabriele Gristina <<matrix@hashcat.net>>
* Christoph Heuwieser <<dropdead@hashcat.net>>
# Building oclHashcat for Linux and OSX
9 years ago
Get a copy of the **oclHashcat** repository
9 years ago
```sh
$ git clone https://github.com/hashcat/oclHashcat.git
```
Run "make"
```sh
$ make
```
# Install oclHashcat for Linux
The linux target is FHS compatible and can be installed like this:
```sh
$ make install
9 years ago
```
If you install it, cached kernels, session files, restore- and pot-files etc will go to $HOME/.hashcat/
# Building oclHashcat for Windows
The following third party library is required:
- NVAPI R352 ( https://developer.nvidia.com/nvapi )
Download the third party library listed above and put the .zip file into the *deps/tmp* directory.
9 years ago
- R352-developer.zip
Install the dependencies (root permission needed for apt-get install command)
Get a copy of the **oclHashcat** repository
```sh
$ git clone https://github.com/hashcat/oclHashcat.git
```
```sh
$ cd oclHashcat
$ ./tools/deps.sh
```
- build all binaries:
```sh
$ make win32 win64
```
# To build all binaries ("make binaries") you need to first clone the OpenCL-Headers within the main folder:
```sh
$ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL
```
the tools/deps.sh script does not clone this repo automatically since for native compilation it is not needed.
9 years ago
=
Enjoy your fresh **oclHashcat** binaries ;)