From fd3857d53a0e729a3ca7c418e13e22e957473744 Mon Sep 17 00:00:00 2001
From: foreman
Date: Thu, 3 Mar 2016 11:58:25 -0500
Subject: [PATCH] P4 to Git Change 1243211 by weizhang@weizhang-lnx-opencl on
2016/03/03 11:46:51
SWDEV-88119 - OGL team recommends to load libGL.so.1 rather than libGL.so for CL-GL.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/platform/context.cpp#39 edit
---
rocclr/runtime/platform/context.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rocclr/runtime/platform/context.cpp b/rocclr/runtime/platform/context.cpp
index 5a3c24bf94..9e2bc7576c 100644
--- a/rocclr/runtime/platform/context.cpp
+++ b/rocclr/runtime/platform/context.cpp
@@ -261,7 +261,7 @@ Context::create(const intptr_t* properties)
#ifdef _WIN32
"OpenGL32.dll"
#else //!_WIN32
- "libGL.so"
+ "libGL.so.1"
#endif //!_WIN32
);