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 --- examples/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/SConscript b/examples/SConscript index fd6b591891..bfac9deb2b 100644 --- a/examples/SConscript +++ b/examples/SConscript @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -# Copyright (c) 2017-2022 Arm Limited. +# Copyright (c) 2017-2023 Arm Limited. # # SPDX-License-Identifier: MIT # @@ -59,7 +59,7 @@ load_whole_archive = '-Wl,--whole-archive' noload_whole_archive = '-Wl,--no-whole-archive' if 'macos' in examples_env['os']: load_whole_archive = '-Wl,-force_load' - noload_whole_archive = '-Wl,-noall_load' + noload_whole_archive = '' # Build graph examples graph_utils = examples_env.Object("../utils/GraphUtils.cpp") -- cgit v1.2.1