1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-10 15:51:10 +00:00

Add option to disable cubin cache binaries and moved some redundant kernel load code into specific function

This commit is contained in:
Jens Steube 2020-01-31 17:50:53 +01:00
parent 01085cdab2
commit 08163501cf
2 changed files with 383 additions and 908 deletions

View File

@ -7,6 +7,7 @@ SHARED := 0
DEBUG := 0 DEBUG := 0
PRODUCTION := 0 PRODUCTION := 0
PRODUCTION_VERSION := v5.1.0 PRODUCTION_VERSION := v5.1.0
ENABLE_CUBIN := 1
ENABLE_BRAIN := 1 ENABLE_BRAIN := 1
USE_SYSTEM_LZMA := 0 USE_SYSTEM_LZMA := 0
USE_SYSTEM_ZLIB := 0 USE_SYSTEM_ZLIB := 0
@ -234,6 +235,11 @@ LFLAGS += -lxxhash
endif endif
endif endif
# CUDA binary cache
ifeq ($(ENABLE_CUBIN),1)
CFLAGS += -DWITH_CUBIN
endif
## ##
## Native compilation target ## Native compilation target
## ##

File diff suppressed because it is too large Load Diff