From ebce28017403c3b97c2941ee4a42fcc9a94e4f0a Mon Sep 17 00:00:00 2001 From: Jakub Sujak Date: Fri, 29 Sep 2023 11:11:59 +0100 Subject: Fix MacOS compilation error The linker option '-noall_load' is obsolete. Resolves: COMPMID-6578 Change-Id: I2d386c25b50705a25600dd612406470e1d3871be Signed-off-by: Jakub Sujak Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10421 Tested-by: Arm Jenkins Benchmark: Arm Jenkins Reviewed-by: Gunes Bayir Comments-Addressed: Arm Jenkins --- tests/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/SConscript') diff --git a/tests/SConscript b/tests/SConscript index 33f709e454..21904899c0 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -79,7 +79,7 @@ load_whole_archive = '-Wl,--whole-archive' noload_whole_archive = '-Wl,--no-whole-archive' if 'macos' in test_env['os']: load_whole_archive = '-Wl,-force_load' - noload_whole_archive = '-Wl,-noall_load' + noload_whole_archive = '' if env['os'] in ['android', 'macos', 'bare_metal'] or env['standalone']: Import("arm_compute_a") -- cgit v1.2.1