1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Fix tools/install_modules.sh ro uninstall pycryptodome

This commit is contained in:
jsteube 2019-04-19 13:17:15 +02:00
parent 4548d15dde
commit f424dd1edb
2 changed files with 2 additions and 3 deletions

View File

@ -357,7 +357,7 @@ static bool test_instruction (hashcat_ctx_t *hashcat_ctx, cl_context context, cl
#endif
#endif
CL_rc = ocl->clBuildProgram (program, 1, &device, "-cl-std=CL1.2 -Werror", NULL, NULL); // do not use the wrapper to avoid the error message
CL_rc = ocl->clBuildProgram (program, 1, &device, "-cl-std=CL1.0 -Werror", NULL, NULL); // do not use the wrapper to avoid the error message
#ifndef DEBUG
#ifndef _WIN

View File

@ -59,8 +59,7 @@ ERRORS=$((ERRORS+$?))
pip2 install pygost pycryptoplus
# is this needed for pycryptoplus ?
# pip2 uninstall pycryptodome
pip2 -y uninstall pycryptodome
ERRORS=$((ERRORS+$?))