Skip to content

Commit 9535457

Browse files
committed
Rewrite Makefile so that it allows easier integration of native targets
1 parent 8653c82 commit 9535457

File tree

15 files changed

+237
-440
lines changed

15 files changed

+237
-440
lines changed

docs/BUILD.md

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Hashcat build documentation
22

33
### Revision:
4-
* 1.01
4+
* 1.02
55

66
### Authors:
77
* Gabriele Gristina <<[email protected]>>
@@ -26,16 +26,11 @@ $ sudo ./tools/deps.sh
2626
Run make depending on your os
2727

2828
```bash
29-
$ make [linux|osx|windows]
29+
$ make [linux|osx|windows|freebsd]
3030
```
3131

32-
Not specifying an argument will build for all OSes except FreeBSD.
32+
Not specifying an argument will cross-compile binaries for Linux, Windows and OSX.
3333

34-
If you want FreeBSD binaries, you will need to run this on a native FreeBSD amd64 system
35-
```sh
36-
$ make freebsd
37-
```
38-
39-
This has been tested on FreeBSD 10.2 and will produce **./hashcat-cli64.elf**. You will need **gmp** installed (/usr/ports/math/gmp).
34+
If you native FreeBSD binaries, you will need **gmp** installed (/usr/ports/math/gmp). This has been tested on FreeBSD 10.2.
4035

4136
Enjoy your fresh **Hashcat** binaries ;)

docs/changes.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
* changes v2.00 -> v2.01:
22

3+
type.: Feature
4+
file.: Host
5+
desc.: Added native compilation support for FreeBSD
6+
PR...: 23, 25
7+
38
type.: Feature
49
file.: Host
510
desc.: Fixed a possible memory problem for hash type -m 11400 = SIP digest authentication (MD5)

include/common.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ typedef unsigned (__stdcall *PTHREAD_START) (void *);
9696
#define ACMutexInit(Dmutex) Dmutex = CreateMutex (0, FALSE, 0)
9797
#endif
9898

99-
#ifdef POSIX
99+
#if defined LINUX || defined OSX || defined FREEBSD
100100
#include <pthread.h>
101101
typedef pthread_t THREAD;
102102
typedef pthread_mutex_t MUTEX;
@@ -112,7 +112,7 @@ typedef pthread_mutex_t MUTEX;
112112
#define SetPriorityHigh() { HANDLE hProc = GetCurrentProcess(); SetPriorityClass (hProc, HIGH_PRIORITY_CLASS); }
113113
#endif
114114

115-
#ifdef POSIX
115+
#if defined LINUX || defined OSX || defined FREEBSD
116116
#include <sys/resource.h>
117117
#define SetPriorityLow() setpriority (PRIO_PROCESS, 0, 1)
118118
#define SetPriorityNormal() setpriority (PRIO_PROCESS, 0, 0)
@@ -123,7 +123,7 @@ typedef pthread_mutex_t MUTEX;
123123
#define hc_sleep(x) Sleep ((x) * 1000);
124124
#endif
125125

126-
#ifdef POSIX
126+
#if defined LINUX || defined OSX || defined FREEBSD
127127
#define hc_sleep(x) sleep ((x));
128128
#endif
129129

obj/freebsd32/.lock

Whitespace-only changes.

obj/freebsd64/.lock

Whitespace-only changes.

obj/freebsdXOP/.lock

Whitespace-only changes.

obj/linux32/.lock

Whitespace-only changes.

obj/linux64/.lock

Whitespace-only changes.

obj/linuxXOP/.lock

Whitespace-only changes.

obj/osx64/.lock

Whitespace-only changes.

obj/win32/.lock

Whitespace-only changes.

obj/win64/.lock

Whitespace-only changes.

obj/winXOP/.lock

Whitespace-only changes.

0 commit comments

Comments
 (0)