Skip to content

Commit

Permalink
Clang -> LLVM in native_toolchain.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicexplorer committed May 5, 2018
1 parent 8e5e742 commit e426fee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from __future__ import (absolute_import, division, generators, nested_scopes, print_function,
unicode_literals, with_statement)

from pants.backend.native.subsystems.clang import Clang
from pants.backend.native.subsystems.gcc import GCC
from pants.backend.native.subsystems.clang import LLVM
from pants.backend.native.subsystems.platform_specific.darwin.xcode_cli_tools import XCodeCLITools
from pants.backend.native.subsystems.platform_specific.linux.binutils import Binutils
from pants.binaries.binary_tool import ExecutablePathProvider
Expand Down Expand Up @@ -41,7 +41,7 @@ class NativeToolchain(Subsystem, ExecutablePathProvider):

# This is a list of subsystems which implement `ExecutablePathProvider` and
# can be provided for all supported platforms.
_CROSS_PLATFORM_SUBSYSTEMS = [Clang, GCC]
_CROSS_PLATFORM_SUBSYSTEMS = [LLVM, GCC]

# This is a map of {<platform> -> [<subsystem_cls>, ...]}; the key is the
# normalized OS name, and the value is a list of subsystem class objects that
Expand Down

0 comments on commit e426fee

Please sign in to comment.