aboutsummaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorJakub Sujak <jakub.sujak@arm.com>2023-11-13 14:57:16 +0000
committerJakub Sujak <jakub.sujak@arm.com>2023-11-23 10:21:57 +0000
commite30c8740d2da7af52ae1320f4d597ffc73d41c5e (patch)
tree0efc66cc2402be1c8ed0649d61cfc8f6c97822b9 /SConscript
parentba93371f2316218a09a24403076ab3fdf967b168 (diff)
downloadComputeLibrary-e30c8740d2da7af52ae1320f4d597ffc73d41c5e.tar.gz
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 <jakub.sujak@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10728 Reviewed-by: Anitha Raj <Anitha.Raj@arm.com> Reviewed-by: Sang Won Ha <sangwon.ha@arm.com> Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript19
1 files changed, 0 insertions, 19 deletions
diff --git a/SConscript b/SConscript
index df2a0a7e2c..9069df901b 100644
--- a/SConscript
+++ b/SConscript
@@ -31,13 +31,6 @@ import zlib
import json
import codecs
-from SCons.Warnings import warn, DeprecatedWarning
-
-warn(DeprecatedWarning,
- "DEPRECATION NOTICE: Legacy libarm_compute_core has been deprecated and is scheduled for removal in 24.02 release."
- " Link your application only to libarm_compute for core library functionality"
- )
-
VERSION = "v0.0-unreleased"
LIBRARY_VERSION_MAJOR = 33
LIBRARY_VERSION_MINOR = 0
@@ -708,18 +701,6 @@ if env['os'] != 'bare_metal' and not env['standalone']:
Export('arm_compute_so')
-# Generate dummy core lib for backwards compatibility
-if env['os'] == 'macos':
- # macos static library archiver fails if given an empty list of files
- arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, lib_files, static=True)
-else:
- arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, [], static=True)
-
-Export('arm_compute_core_a')
-
-if env['os'] != 'bare_metal' and not env['standalone']:
- arm_compute_core_a_so = build_library('arm_compute_core', arm_compute_env, [], static=False)
- Export('arm_compute_core_a_so')
arm_compute_graph_env = arm_compute_env.Clone()