Skip to content

Commit

Permalink
Add worker output processor to linux toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrymarino committed Feb 23, 2021
1 parent e22ec8c commit 739565f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion swift/internal/feature_names.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ SWIFT_FEATURE_FULL_DEBUG_INFO = "swift.full_debug_info"
# explicitly.
SWIFT_FEATURE_IMPLICIT_MODULES = "swift.implicit_modules"

# Index while buiding - using a global index store cache
# Index while building - using a global index store cache
# https://docs.google.com/document/d/1cH2sTpgSnJZCkZtJl1aY-rzy4uGPcrI-6RrUpdATO2Q/
SWIFT_FEATURE_INDEX_WHILE_BUILDING_V2 = "swift.index_while_building_v2"

Expand Down
4 changes: 1 addition & 3 deletions swift/internal/swift_toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,10 @@ for incremental compilation using a persistent mode.
"_worker_output_processor": attr.label(
cfg = "host",
allow_files = True,
# TODO: add this processor if the feature is enabled
default = Label("@com_github_lyft_index_import//:index_import"),
default = "@build_bazel_rules_swift//tools/worker:worker_output_processor",
doc = """\
An executable used to operate on llvm indexs for index while building
""",
executable = True,
),
},
),
Expand Down

0 comments on commit 739565f

Please sign in to comment.