aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2019-11-27 11:11:15 +0000
committerManuel Bottini <manuel.bottini@arm.com>2019-11-27 16:26:42 +0000
commit4d064b773215e16e26bd5394a91690ca2a560bbe (patch)
tree6cb2cbcfef93db96f4b7ffe8ceaccfd48f76158d /SConstruct
parentae6ef7cb55af14dc25f85c6957edbba31d778d1f (diff)
downloadComputeLibrary-4d064b773215e16e26bd5394a91690ca2a560bbe.tar.gz
COMPMID-2960: Remove OpenCL and GLES stubs if not used
Change-Id: I429059bb57f90bc657db055e21d39e73a13849eb Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/2372 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 0 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 8509fedbb3..e63d33e9fd 100644
--- a/SConstruct
+++ b/SConstruct
@@ -304,12 +304,9 @@ for dirname in os.listdir("./include"):
Export('version_at_least')
-if env['opencl']:
- SConscript("./opencl-1.2-stubs/SConscript", variant_dir="%s/opencl-1.2-stubs" % build_path, duplicate=0)
if env['gles_compute'] and env['os'] != 'android':
env.Append(CPPPATH = ['#/include/linux'])
- SConscript("./opengles-3.1-stubs/SConscript", variant_dir="%s/opengles-3.1-stubs" % build_path, duplicate=0)
SConscript('./SConscript', variant_dir=build_path, duplicate=0)