Commit bbf3607f authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #3652 from alalek:ocl_message

parents 97aa8d33 f282fd0e
...@@ -70,6 +70,7 @@ static void* AppleCLGetProcAddress(const char* name) ...@@ -70,6 +70,7 @@ static void* AppleCLGetProcAddress(const char* name)
handle = dlopen(oclpath, RTLD_LAZY | RTLD_GLOBAL); handle = dlopen(oclpath, RTLD_LAZY | RTLD_GLOBAL);
if (handle == NULL) if (handle == NULL)
{ {
if (envPath)
fprintf(stderr, ERROR_MSG_CANT_LOAD); fprintf(stderr, ERROR_MSG_CANT_LOAD);
} }
else if (dlsym(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL) else if (dlsym(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL)
...@@ -108,6 +109,7 @@ static void* WinGetProcAddress(const char* name) ...@@ -108,6 +109,7 @@ static void* WinGetProcAddress(const char* name)
handle = LoadLibraryA(path); handle = LoadLibraryA(path);
if (!handle) if (!handle)
{ {
if (envPath)
fprintf(stderr, ERROR_MSG_CANT_LOAD); fprintf(stderr, ERROR_MSG_CANT_LOAD);
} }
else if (GetProcAddress(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL) else if (GetProcAddress(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL)
...@@ -145,6 +147,7 @@ static void* GetProcAddress(const char* name) ...@@ -145,6 +147,7 @@ static void* GetProcAddress(const char* name)
handle = dlopen(path, RTLD_LAZY | RTLD_GLOBAL); handle = dlopen(path, RTLD_LAZY | RTLD_GLOBAL);
if (handle == NULL) if (handle == NULL)
{ {
if (envPath)
fprintf(stderr, ERROR_MSG_CANT_LOAD); fprintf(stderr, ERROR_MSG_CANT_LOAD);
} }
else if (dlsym(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL) else if (dlsym(handle, OPENCL_FUNC_TO_CHECK_1_1) == NULL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment