File: BUILD.gn

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (150 lines) | stat: -rw-r--r-- 4,647 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import("//llvm/lib/DebugInfo/PDB/enable_dia.gni")
import("//llvm/triples.gni")
import("//llvm/utils/gn/build/libs/xar/enable.gni")
import("//llvm/utils/gn/build/libs/xml/enable.gni")
import("//llvm/utils/gn/build/libs/zlib/enable.gni")
import("//llvm/utils/gn/build/write_cmake_config.gni")
import("lld_lit_site_cfg_files.gni")

write_cmake_config("lit_site_cfg") {
  # Fully-qualified instead of relative for LIT_SITE_CFG_IN_HEADER.
  input = "//lld/test/lit.site.cfg.py.in"
  output = lld_lit_site_cfg_file
  dir = get_path_info(output, "dir")

  values = [
    "LIT_SITE_CFG_IN_HEADER=## Autogenerated from $input, do not edit",
    "LLD_BINARY_DIR=" + rebase_path(get_label_info("//lld", "target_out_dir")),
    "CURRENT_LIBS_DIR=",  # FIXME: for shared builds only (?)
    "CURRENT_TOOLS_DIR=" + rebase_path("$root_out_dir/bin"),
    "ENABLE_BACKTRACES=1",
    "LLD_SOURCE_DIR=" + rebase_path("//lld"),
    "LLVM_BINARY_DIR=" +
        rebase_path(get_label_info("//llvm", "target_out_dir")),
    "LLVM_LIBS_DIR=",  # needed only for shared builds
    "LLVM_LIT_TOOLS_DIR=",  # Intentionally empty, matches cmake build.
    "LLVM_SOURCE_DIR=" + rebase_path("//llvm"),
    "LLVM_TOOLS_DIR=" + rebase_path("$root_out_dir/bin"),
    "Python3_EXECUTABLE=$python_path",
    "LLVM_TARGET_TRIPLE=$llvm_target_triple",

    "LLD_DEFAULT_LD_LLD_IS_MINGW=0",
    "LLVM_BUILD_EXAMPLES=0",
    "LLVM_BYE_LINK_INTO_TOOLS=0",
  ]

  if (host_os == "win") {
    values += [
      "LLVM_LIT_ERRC_MESSAGES=no such file or directory;is a directory;" +
          "invalid argument;permission denied",
      "LLVM_ENABLE_PLUGINS=0",

      # See comment for Windows solink in llvm/utils/gn/build/toolchain/BUILD.gn
      "SHLIBDIR=" + rebase_path("$root_out_dir/bin", dir),
    ]
  } else {
    values += [
      "LLVM_LIT_ERRC_MESSAGES=",
      "LLVM_ENABLE_PLUGINS=1",
      "SHLIBDIR=" + rebase_path("$root_out_dir/lib", dir),
    ]
  }

  if (host_os == "mac") {
    values += [ "SHLIBEXT=.dylib" ]
  } else if (host_os == "win") {
    values += [ "SHLIBEXT=.dll" ]
  } else {
    values += [ "SHLIBEXT=.so" ]
  }

  if (llvm_enable_dia_sdk) {
    values += [ "LLVM_ENABLE_DIA_SDK=1" ]
  } else {
    values += [ "LLVM_ENABLE_DIA_SDK=0" ]  # Must be 0.
  }

  if (llvm_enable_libxar) {
    values += [ "LLVM_HAVE_LIBXAR=1" ]
  } else {
    values += [ "LLVM_HAVE_LIBXAR=0" ]  # Must be 0.
  }

  if (llvm_enable_libxml2) {
    values += [ "LLVM_ENABLE_LIBXML2=1" ]
  } else {
    values += [ "LLVM_ENABLE_LIBXML2=0" ]  # Must be 0.
  }

  if (llvm_enable_zlib) {
    values += [ "LLVM_ENABLE_ZLIB=1" ]
  } else {
    values += [ "LLVM_ENABLE_ZLIB=0" ]  # Must be 0.
  }

  if (current_cpu == "x64" || current_cpu == "arm64" ||
      current_cpu == "ppc64") {
    values += [ "CMAKE_SIZEOF_VOID_P=8" ]
  } else {
    values += [ "CMAKE_SIZEOF_VOID_P=4" ]
  }
}

# This target should contain all dependencies of check-lld.
# //:default depends on it, so that ninja's default target builds all
# prerequisites for check-lld but doesn't run check-lld itself.
group("test") {
  deps = [
    ":lit_site_cfg",
    "//lld/tools/lld:symlinks",
    "//llvm/tools/dsymutil",
    "//llvm/tools/llc",
    "//llvm/tools/llvm-ar:symlinks",
    "//llvm/tools/llvm-as",
    "//llvm/tools/llvm-bcanalyzer",
    "//llvm/tools/llvm-cvtres",
    "//llvm/tools/llvm-dis",
    "//llvm/tools/llvm-dwarfdump",
    "//llvm/tools/llvm-lipo:symlinks",
    "//llvm/tools/llvm-mc",
    "//llvm/tools/llvm-nm:symlinks",
    "//llvm/tools/llvm-objcopy:symlinks",
    "//llvm/tools/llvm-objdump:symlinks",
    "//llvm/tools/llvm-pdbutil",
    "//llvm/tools/llvm-profdata",
    "//llvm/tools/llvm-readobj:symlinks",
    "//llvm/tools/llvm-symbolizer:symlinks",
    "//llvm/tools/obj2yaml",
    "//llvm/tools/opt",
    "//llvm/tools/split-file",
    "//llvm/tools/yaml2obj",
    "//llvm/utils/FileCheck",
    "//llvm/utils/count",
    "//llvm/utils/llvm-lit",
    "//llvm/utils/not",
  ]
  testonly = true
}

# This is the action that runs all of lld's tests, check-lld.
action("check-lld") {
  script = "$root_out_dir/bin/llvm-lit"
  if (host_os == "win") {
    script += ".py"
  }
  args = [
    "-sv",
    rebase_path(".", root_out_dir),
  ]
  outputs = [ "$target_gen_dir/run-lit" ]  # Non-existing, so that ninja runs it
                                           # each time.

  # Since check-lld is always dirty, //:default doesn't depend on it so that
  # it's not part of the default ninja target.  Hence, check-lld shouldn't
  # have any deps except :test, so that the default target is sure to build
  # all the deps.
  deps = [ ":test" ]
  testonly = true

  pool = "//:console"
}