You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
348 B
14 lines
348 B
7 months ago
|
import("//clang/resource_dir.gni")
|
||
|
import("//llvm/triples.gni")
|
||
|
|
||
|
declare_args() {
|
||
|
# Use target triple as the name of the runtimes directory.
|
||
|
clang_enable_per_target_runtime_dir = false
|
||
|
}
|
||
|
|
||
|
if (clang_enable_per_target_runtime_dir) {
|
||
|
runtimes_dir = "$clang_resource_dir/$llvm_target_triple/lib"
|
||
|
} else {
|
||
|
runtimes_dir = "$root_build_dir/lib"
|
||
|
}
|