Skip to content

Commit

Permalink
Remove link.params -L__BAZEL_XCODE_ filter (#1572)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
brentleyjones authored Jan 13, 2023
1 parent 64ae767 commit 7217511
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tools/params_processors/link_params_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7217511

Please sign in to comment.