aboutsummaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-12-22 16:37:30 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commita9e153398e4a998ee01623eb78c4604bbd8d34e7 (patch)
tree8a07b58dc044e37311387dc7ef771b5f2bb4bb55 /SConscript
parent77eb21f7d9c6e34e985dfa96152fb8b6c40f9a8a (diff)
downloadComputeLibrary-a9e153398e4a998ee01623eb78c4604bbd8d34e7.tar.gz
COMPMID-766 Allow graph examples to run without OpenCL being present on the platform
Change-Id: I4142e0720ecb58549a08d4e86ad21abb882f5f37 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/114552 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConscript b/SConscript
index 2544d1f64c..c7779ca8f7 100644
--- a/SConscript
+++ b/SConscript
@@ -235,7 +235,7 @@ if env['neon'] and env['opencl']:
Export('arm_compute_graph_a')
arm_compute_env.Append(LIBPATH = ["#build/%s/opencl-1.2-stubs" % env['build_dir']])
- arm_compute_graph_so = build_library('arm_compute_graph', shared_graph_objects, static=False, libs = [ "arm_compute", "arm_compute_core", "OpenCL" ])
+ arm_compute_graph_so = build_library('arm_compute_graph', shared_graph_objects, static=False, libs = [ "arm_compute", "arm_compute_core"])
Depends(arm_compute_graph_so, arm_compute_so)
Depends(arm_compute_graph_so, opencl)
Export('arm_compute_graph_so')