|
| 1 | +# Copyright 2018 The Fuchsia Authors. All rights reserved. |
| 2 | +# Use of this source code is governed by a BSD-style license that can be |
| 3 | +# found in the LICENSE file. |
| 4 | + |
| 5 | +# DO NOT MANUALLY EDIT! |
| 6 | +# Generated by //scripts/sdk/bazel/generate.py. |
| 7 | + |
| 8 | +licenses(["notice"]) |
| 9 | + |
| 10 | + |
| 11 | +package(default_visibility = ["//visibility:public"]) |
| 12 | + |
| 13 | +cc_toolchain_suite( |
| 14 | + name = "toolchain", |
| 15 | + toolchains = { |
| 16 | + "x86_64|llvm": ":cc-compiler-x86_64", |
| 17 | + "x86_64": ":cc-compiler-x86_64", |
| 18 | + }, |
| 19 | +) |
| 20 | + |
| 21 | +TARGET_CPUS = [ |
| 22 | + "x86_64", |
| 23 | +] |
| 24 | + |
| 25 | +filegroup( |
| 26 | + name = "empty", |
| 27 | +) |
| 28 | + |
| 29 | +filegroup( |
| 30 | + name = "cc-compiler-prebuilts", |
| 31 | + srcs = [ |
| 32 | + "clang/bin/clang", |
| 33 | + "clang/bin/clang-8", |
| 34 | + "clang/bin/llvm-ar", |
| 35 | + "clang/bin/clang++", |
| 36 | + "clang/bin/ld.lld", |
| 37 | + "clang/bin/lld", |
| 38 | + "clang/bin/llvm-nm", |
| 39 | + "clang/bin/llvm-objdump", |
| 40 | + "clang/bin/llvm-strip", |
| 41 | + "clang/bin/llvm-objcopy", |
| 42 | + ] + glob([ |
| 43 | + "clang/lib/clang/8.0.0/include/**", |
| 44 | + ]), |
| 45 | +) |
| 46 | + |
| 47 | +filegroup( |
| 48 | + name = "compile", |
| 49 | + srcs = [ |
| 50 | + ":cc-compiler-prebuilts", |
| 51 | + ], |
| 52 | +) |
| 53 | + |
| 54 | +filegroup( |
| 55 | + name = "objcopy", |
| 56 | + srcs = [ |
| 57 | + "clang/bin/llvm-objcopy", |
| 58 | + ], |
| 59 | +) |
| 60 | + |
| 61 | +[ |
| 62 | + filegroup( |
| 63 | + name = "every-file-" + cpu, |
| 64 | + srcs = [ |
| 65 | + ":cc-compiler-prebuilts", |
| 66 | + ":runtime-" + cpu, |
| 67 | + ], |
| 68 | + ) |
| 69 | + for cpu in TARGET_CPUS |
| 70 | +] |
| 71 | + |
| 72 | +[ |
| 73 | + filegroup( |
| 74 | + name = "link-" + cpu, |
| 75 | + srcs = [ |
| 76 | + ":cc-compiler-prebuilts", |
| 77 | + ":runtime-" + cpu, |
| 78 | + ], |
| 79 | + ) |
| 80 | + for cpu in TARGET_CPUS |
| 81 | +] |
| 82 | + |
| 83 | +[ |
| 84 | + filegroup( |
| 85 | + name = "runtime-" + cpu, |
| 86 | + srcs = [ |
| 87 | + "clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libclang_rt.builtins.a", |
| 88 | + ], |
| 89 | + ) |
| 90 | + for cpu in TARGET_CPUS |
| 91 | +] |
| 92 | + |
| 93 | +[ |
| 94 | + cc_toolchain( |
| 95 | + name = "cc-compiler-" + cpu, |
| 96 | + toolchain_identifier = "crosstool-1.x.x-llvm-fuchsia-" + cpu, |
| 97 | + all_files = ":every-file-" + cpu, |
| 98 | + compiler_files = ":compile", |
| 99 | + cpu = cpu, |
| 100 | + dwp_files = ":empty", |
| 101 | + dynamic_runtime_libs = [":runtime-" + cpu], |
| 102 | + linker_files = ":link-" + cpu, |
| 103 | + objcopy_files = ":objcopy", |
| 104 | + static_runtime_libs = [":runtime-" + cpu], |
| 105 | + strip_files = ":runtime-" + cpu, |
| 106 | + supports_param_files = 1, |
| 107 | + ) |
| 108 | + for cpu in TARGET_CPUS |
| 109 | +] |
| 110 | + |
| 111 | +cc_library( |
| 112 | + name = "sources", |
| 113 | + srcs = glob(["src/**"]), |
| 114 | + visibility = ["//visibility:public"], |
| 115 | +) |
| 116 | + |
| 117 | +[ |
| 118 | + filegroup( |
| 119 | + name = "dist-" + cpu, |
| 120 | + srcs = [ |
| 121 | + "clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libc++.so.2", |
| 122 | + "clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libc++abi.so.1", |
| 123 | + "clang/lib/clang/8.0.0/" + cpu + "-fuchsia/lib/libunwind.so.1", |
| 124 | + ], |
| 125 | + ) |
| 126 | + for cpu in TARGET_CPUS |
| 127 | +] |
0 commit comments