1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-26 01:50:10 +00:00

Link hashcat native binary with -lrt to workaround problems with clock_gettime() on libc versions < 2.17

This commit is contained in:
jsteube 2018-01-26 23:24:01 +01:00
parent 213de0ba43
commit 01a7476ff8

View File

@ -210,6 +210,7 @@ CFLAGS_NATIVE += -DWITH_HWMON
LFLAGS_NATIVE := $(LFLAGS)
LFLAGS_NATIVE += -lpthread
LFLAGS_NATIVE += -ldl
LFLAGS_NATIVE += -lrt
endif # Linux
ifeq ($(UNAME),FreeBSD)