From 7217511ac7fd9221d17b409a40cc9c3ca723ac2f Mon Sep 17 00:00:00 2001 From: Brentley Jones Date: Fri, 13 Jan 2023 07:53:26 -0600 Subject: [PATCH] Remove `link.params` `-L__BAZEL_XCODE_` filter (#1572) This will result in slight duplication, but since these files are generated on the fly, that is fine, and it lowers the chance of filtering something incorrect. --- tools/params_processors/link_params_processor.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/params_processors/link_params_processor.py b/tools/params_processors/link_params_processor.py index 545afd4911..7f43daa7d3 100755 --- a/tools/params_processors/link_params_processor.py +++ b/tools/params_processors/link_params_processor.py @@ -123,10 +123,6 @@ def _process_linkopt(opt): if opt.endswith(".o"): return None - # Xcode adds system library search paths - if opt.startswith("-L__BAZEL_XCODE_"): - return None - if opt.startswith("-F"): path = opt[2:] search_paths = generated_framework_search_paths.get(path)