From e30c8740d2da7af52ae1320f4d597ffc73d41c5e Mon Sep 17 00:00:00 2001 From: Jakub Sujak Date: Mon, 13 Nov 2023 14:57:16 +0000 Subject: Remove the legacy core library Stop building and linking to the legacy libarm_compute_core artifact. This library is an artifact of Compute Library's legacy library architecture and no longer serves any purpose. Users should link only to the main libarm_compute library for core functionality. Resolves: COMPMID-6329 Change-Id: Ife9d2c25d275e7c676deb09632ae461f697efde9 Signed-off-by: Jakub Sujak Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10728 Reviewed-by: Anitha Raj Reviewed-by: Sang Won Ha Reviewed-by: Pablo Marquez Tello Benchmark: Arm Jenkins Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- examples/SConscript | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/SConscript b/examples/SConscript index bfac9deb2b..16f31d93d4 100644 --- a/examples/SConscript +++ b/examples/SConscript @@ -38,15 +38,14 @@ utils = examples_env.Object("../utils/Utils.cpp") if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']: Import('arm_compute_graph_a') Import('arm_compute_a') - Import('arm_compute_core_a') - arm_compute_libs = [ arm_compute_a, arm_compute_core_a ] + arm_compute_libs = [ arm_compute_a ] arm_compute_graph_libs = arm_compute_libs # The graph library needs to be linked separately with --whole-archive arm_compute_dependency = arm_compute_a graph_dependency = [arm_compute_graph_a] else: Import('arm_compute_graph_so') Import('arm_compute_so') - arm_compute_libs = ["arm_compute", "arm_compute_core"] + arm_compute_libs = ["arm_compute"] arm_compute_graph_libs = [ "arm_compute_graph" ] + arm_compute_libs arm_compute_dependency = arm_compute_so graph_dependency = [arm_compute_graph_so] -- cgit v1.2.1