aboutsummaryrefslogtreecommitdiff
path: root/gn/standalone/toolchain/llvm.gni
blob: e3fc350ba35ea57b73c5f9f3afa8b9d83d7a7f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (C) 2017 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import("//gn/standalone/sanitizers/vars.gni")

declare_args() {
  is_hermetic_clang = is_clang && (is_linux_host || is_win_host)
}

assert(!is_hermetic_clang || is_clang, "is_hermetic_clang requires is_clang")

if (is_linux_host) {
  if (is_hermetic_clang) {
    _hermetic_llvm_dir =
        rebase_path("//buildtools/linux64/clang", root_build_dir)
    linux_clang_bin = "$_hermetic_llvm_dir/bin/clang"
    linux_clangxx_bin = "$_hermetic_llvm_dir/bin/clang++"
    linux_clang_linker = "lld"
  } else if (is_clang && !is_system_compiler) {
    # Guess the path for the system clang.
    # When is_system_compiler = true users neet to explicitly set cc / target_cc
    # vars in the GN args."
    _find_llvm_out = exec_script("linux_find_llvm.py", [], "list lines")
    _linux_llvm_dir = _find_llvm_out[0]
    linux_clang_bin = _find_llvm_out[1]
    linux_clangxx_bin = _find_llvm_out[2]
    linux_clang_linker = "gold"
  }
} else if (is_mac_host && is_clang && !is_system_compiler) {
  _mac_toolchain_dirs = exec_script("mac_find_llvm.py", [], "list lines")

  # _mac_toolchain_dirs[0] contains the mac toolchain dir.
  mac_clangrt_dir = _mac_toolchain_dirs[1]
} else if (is_win_host) {
  if (is_hermetic_clang) {
    # Use the toolchain pulled by //tools/install-build-deps. This tracks
    # chromium's llvm dist.
    _llvm_win_path = rebase_path("//buildtools/win/clang/bin", root_build_dir)
    win_clang_bin = "${_llvm_win_path}\clang-cl.exe"
    win_clangxx_bin = "${_llvm_win_path}\clang-cl.exe"
    win_clang_linker = "${_llvm_win_path}\lld-link.exe"
  } else {
    # Assume clang-cl.exe / lld-link.exe are on the PATH. The user can always
    # ovveride them by setting cc/cxx/linker GN variables.
    # See //gn/standalone/toolchain/BUILD.gn.
    win_clang_bin = "clang-cl.exe"
    win_clangxx_bin = "clang-cl.exe"
    win_clang_linker = "lld-link.exe"
  }
}