brintos

brintos / llvm-project-archived public Read only

0
0
Text · 348 B · 4b9de1d Raw
14 lines · plain
1import("//clang/resource_dir.gni")2import("//llvm/triples.gni")3 4declare_args() {5  # Use target triple as the name of the runtimes directory.6  clang_enable_per_target_runtime_dir = false7}8 9if (clang_enable_per_target_runtime_dir) {10  runtimes_dir = "$clang_resource_dir/lib/$llvm_target_triple"11} else {12  runtimes_dir = "$root_build_dir/lib"13}14