[AMDGPU] Test codegen'ing True16 additions.
[llvm-project.git] / llvm / utils / gn / build / toolchain / compiler.gni
blob7cd15e658a087b7cf74c05c59096b1ba66edae2d
1 declare_args() {
2   # Whether to use goma (https://chromium.googlesource.com/infra/goma/client/)
3   use_goma = false
5   # Set this to a clang build directory. If set, that clang is used as compiler.
6   # goma only works with compiler binaries it knows about, so useful both for
7   # using a goma-approved compiler and for compiling clang with a locally-built
8   # clang in a different build directory.
9   # On Windows, setting this also causes lld-link to be used as linker.
10   # Example value: getenv("HOME") + "/src/llvm-build/Release+Asserts"
11   clang_base_path = ""
13   # Set this to the path to Android NDK r21. If set, cross compilation targeting
14   # Android will be enabled.
15   android_ndk_path = ""
17   # Set this to the path of the Win SDK. Only used for cross compilation. If set, cross compilation targeting Windows will be enabled.
18   win_sysroot = ""
21 declare_args() {
22   # Set if the host compiler is clang.  On by default on Mac or if
23   # clang_base_path is set.
24   is_clang = host_os == "mac" || clang_base_path != ""
26   # Set this to true to link with LLD instead of the default linker.
27   use_lld = clang_base_path != ""
30 assert(
31     !(host_os == "win" && win_sysroot != ""),
32     "win_sysroot should only be used for cross compilation, use sysroot on Windows")