Use .gitmodules to handle OpenCL headers depency

Based on https://github.com/hashcat/hashcat/pull/467
This commit is contained in:
jsteube 2016-09-02 10:22:30 +02:00
parent a289c37ecf
commit caf2a7da6d
5 changed files with 3 additions and 5 deletions

1
.gitignore vendored
View File

@ -7,7 +7,6 @@ hashcat
*.pot
*.log
*.dSYM
deps/**
kernels/**
lib/*.a
obj/*.o

0
.gitmodules vendored Normal file
View File

View File

@ -3,8 +3,7 @@ os:
- osx
language: c
install:
- mkdir -p deps/OpenCL-Headers
- git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL
- git submodule update --recursive
compiler:
- clang
- gcc

View File

@ -19,8 +19,7 @@ $ git clone https://github.com/hashcat/hashcat.git
Get a copy of the **OpenCL Headers** repository
```sh
$ mkdir -p deps/OpenCL-Headers
$ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL
$ git submodule update --recursive
```
Run "make"

View File

@ -4,6 +4,7 @@
## Improvements
##
- Use .gitmodules to handle OpenCL headers depency
- Allow loading of bcrypt hashes with signature $2b$ (February 2014)
##