blob: 4ee8878e8adba1c216af071441f9d81c708035bc [file] [log] [blame]
# Copyright 2016 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/clang/clang_cpu.gni")
import("//build/config/current_target_tuple.gni")
default_clang_prefix = "//prebuilt/third_party/clang/${host_platform}/bin"
declare_args() {
# The default clang toolchain provided by the prebuilt. This variable is
# additionally consumed by the Go toolchain.
clang_prefix = default_clang_prefix
# Embed LLVM bitcode as .llvmbc section in ELF files. This is intended
# primarily for external tools that use bitcode for analysis.
clang_embed_bitcode = false
}
# The value of clang_prefix relative to root_build_dir, useful
# when expanding it in command arguments.
rebased_clang_prefix = rebase_path(clang_prefix, root_build_dir)
# TODO(phosek): this is inefficient, rather this should come from a JSON file.
# Relative path makes command-lines remote-portable.
clang_resource_dir = rebase_path(exec_script("$clang_prefix/clang",
[
"--target=$current_target_tuple",
"-print-resource-dir",
],
"trim string",
[]),
root_build_dir)
# We only provide dynamic runtime libs on Fuchsia.
if (is_fuchsia) {
# TODO(fxbug.dev/57729): Get this information from runtime.json instead.
clang_libunwind = exec_script("$clang_prefix/clang++",
[
"--target=$current_target_tuple",
"-print-file-name=libunwind.so",
],
"trim string",
[])
}