From f424dd1edb4204c6cc2fa8f8d69c797450a9cf31 Mon Sep 17 00:00:00 2001 From: jsteube Date: Fri, 19 Apr 2019 13:17:15 +0200 Subject: [PATCH] Fix tools/install_modules.sh ro uninstall pycryptodome --- src/opencl.c | 2 +- tools/install_modules.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/opencl.c b/src/opencl.c index 8deeda105..2cbf1fdd8 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -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 diff --git a/tools/install_modules.sh b/tools/install_modules.sh index 2cee59428..0cfa90698 100755 --- a/tools/install_modules.sh +++ b/tools/install_modules.sh @@ -59,8 +59,7 @@ ERRORS=$((ERRORS+$?)) pip2 install pygost pycryptoplus -# is this needed for pycryptoplus ? -# pip2 uninstall pycryptodome +pip2 -y uninstall pycryptodome ERRORS=$((ERRORS+$?))