Lines Matching +full:html +full:- +full:docs +full:- +full:path
10 - https://docs.bazel.build/versions/4.2.1/tutorial/cc-toolchain-config.html
11 …- https://github.com/emscripten-core/emsdk/blob/7f39d100d8cd207094decea907121df72065517e/bazel/ems…
34 …# https://docs.bazel.build/versions/main/skylark/lib/cc_common.html#create_cc_toolchain_config_info
49 toolchain_identifier = "clang-toolchain",
73 clang_tool = tool(path = "clang_trampoline.sh")
74 lld_tool = tool(path = "lld_trampoline.sh")
75 ar_tool = tool(path = "ar_trampoline.sh")
106 …# "-Wl" flags on the command: https://releases.llvm.org/6.0.1/tools/clang/docs/ClangCommandLineRef…
115 …# https://github.com/emscripten-core/emsdk/blob/7f39d100d8cd207094decea907121df72065517e/bazel/ems…
116 # By default, there are no flags or libraries passed to the llvm-ar tool, so
118 …# https://docs.bazel.build/versions/main/cc-toolchain-config-reference.html#cctoolchainconfiginfo-…
125 # https://llvm.org/docs/CommandGuide/llvm-ar.html
199 # folders here and look in the absolute path that happens to contain
200 # the clang executable. Because that looks like an absolute path to
203 "-isystem",
205 "-isystem",
207 "-isystem",
208 EXTERNAL_TOOLCHAIN + "/usr/include/x86_64-linux-musl",
221 # http://g/skia-staff/bhPPBV4YdeU/5oyG5GRgBQAJ
222 "-std=c++14",
223 "-Wno-c++17-extensions",
224 "-Wno-psabi", # noisy
227 …# https://github.com/llvm/llvm-project/blob/f4c1258d5633fcf06385ff3fd1f4bf57ab971964/libcxx/includ…
228 …# https://github.com/llvm/llvm-project/blob/f4c1258d5633fcf06385ff3fd1f4bf57ab971964/libcxx/includ…
229 …# https://github.com/llvm/llvm-project/blob/f4c1258d5633fcf06385ff3fd1f4bf57ab971964/libcxx/includ…
230 "-D_LIBCPP_HAS_MUSL_LIBC",
241 "-fuse-ld=lld",
242 # This is the path to libc.a and other libraries.
243 "-L" + EXTERNAL_TOOLCHAIN + "/usr/lib/x86_64-linux-musl",
244 "-L" + EXTERNAL_TOOLCHAIN + "/lib",
247 "--rtlib=compiler-rt",
251 "-static",
252 "-std=c++14",
253 "-lc++abi",
254 "-lunwind",
255 "-lc++",
280 "--trace-includes",
281 "-v",
292 "-Wl,--verbose",
293 "-v",
304 "--print-search-dirs",
310 # Running a Bazel command with --features diagnostic will cause the compilation and
320 # Running a Bazel command with --features print_search_dirs will cause the link to fail