aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct7
-rw-r--r--src/core/CL/CLHelpers.cpp1
2 files changed, 6 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index a0acb7bf5f..626a302df6 100644
--- a/SConstruct
+++ b/SConstruct
@@ -214,7 +214,12 @@ elif env['os'] == 'bare_metal':
if env['opencl']:
if env['os'] in ['bare_metal'] or env['standalone']:
- print("Cannot link OpenCL statically, which is required on bare metal")
+ print("Cannot link OpenCL statically, which is required for bare metal / standalone builds")
+ Exit(1)
+
+if env['gles_compute']:
+ if env['os'] in ['bare_metal'] or env['standalone']:
+ print("Cannot link OpenGLES statically, which is required for bare metal / standalone builds")
Exit(1)
if env['opencl'] or env['gles_compute']:
diff --git a/src/core/CL/CLHelpers.cpp b/src/core/CL/CLHelpers.cpp
index 378e910f21..71679bcdf0 100644
--- a/src/core/CL/CLHelpers.cpp
+++ b/src/core/CL/CLHelpers.cpp
@@ -278,7 +278,6 @@ CLVersion get_cl_version(const cl::Device &device)
return CLVersion::UNKNOWN;
}
-
bool device_supports_extension(const cl::Device &device, const char *extension_name)
{
std::string extensions = device.getInfo<CL_DEVICE_EXTENSIONS>();